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
C++0x provides std::async for this. Here's an existing implementation, a discussion, and Wikipedia.
std::async