Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Windows 是否支持 API 来设置取消和非取消模式,就像我们在 LINUX 中所做的那样,具有以下功能。pthread_setcancelstate pthread_setcanceltype
下载pthread_w32
并在您的项目中添加 lib 文件路径或使用
#pragma comment(lib, "pthreadVC2.lib")
然后将 pthread*.dll 复制到您的系统路径,
在您的代码中,您可以编写
#include <pthread.h>