我正在为Linux(带有PThreads)和Windows(带有内置的WinThreads)创建一个C库,它可以附加到任何程序,并且需要在线程退出时调用一个函数,类似于atexit的工作方式流程.
我知道pthreads的pthread_cleanup_push和pthread_cleanup_pop,但是这些对我来说不起作用,因为它们是添加另一个词法范围的宏,而我想在第一次调用我的库时声明这个函数,然后允许程序本身运行它需要自己的代码.我在Windows中没有发现任何类似的东西.
请注意,这并不意味着我希望在线程停止时提醒外部线程,或者甚至我可以更改线程退出的方式,因为这是由程序本身控制的,我的库只是附加,为了骑.
所以问题是:在这种情况下,最好的方法是,当我无法控制线程的创建或销毁方式时,在Windows或Linux中,当线程关闭时,我有一个我编写的函数. ?
例如在主程序中:
void* threadFunc(void* arg)
{
printf("Hello world!\n");
return NULL;
}
int main(int argc,char** argv)
{
int numThreads = 1;
pid_t* pids = NULL;
pids = (pid_t*) calloc(sizeof(pid_t),numThreads);
pthread_create(&ntid,NULL,threadFunc,&nVal);
pthreads[0] = ntid;
pthread_join(pthreads[0],NULL);
return 0;
}
在图书馆:
void callMeOnExit()
{
printf("Exiting Thread!\n");
}
我想要在线程返回NULL时调用callMeOnExit;在这种情况下,以及当主线程到达返回0时;包装pthread_exit适用于其他情况,可能是一个解决方案,但如果可能的话,我想要一个更好的解决方案.
如果有人对我如何能够做到这一点有任何想法,那就太好了!
最佳答案
原文链接:https://www.f2er.com/linux/440270.html