Asynchronous function call for C++

前端 未结 8 740
面向向阳花
面向向阳花 2021-02-09 17:38

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

8条回答
  •  庸人自扰
    2021-02-09 18:13

    C++0x provides std::async for this. Here's an existing implementation, a discussion, and Wikipedia.

提交回复
热议问题