Asynchronous function call for C++

前端 未结 8 743
面向向阳花
面向向阳花 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条回答
  •  旧时难觅i
    2021-02-09 18:14

    Use boost::thread as the standard cross-platform solution. If you need something more involved, there's Intel's Thread Building Blocks.

提交回复
热议问题