您的位置首页百科问答 WIN32 SuspendThread/ResumeThread 在 pthread下有什么方法代替 Simone 发布于 2024-11-10 21:51:25 594 阅读 WIN32 SuspendThread/ResumeThread 在 pthread下有什么方法代替的有关信息介绍如下:#include //挂起当前线程int pthread_join(pthread_t th,void **thread_return);//让线程分离int pthread_detach(pthread_t th);关于pthread函数族有很多函数查看一下pthread.h或google搜一下这方面介绍很多