I need a hint how to implement asynchronous function calls in C/C++ ( or names of frameworks/API calls for windows and/or linux )
The use case is following: A parent thr
Use boost::thread as the standard cross-platform solution. If you need something more involved, there's Intel's Thread Building Blocks.