当使用posix线程时,是否有某种方法可以“保护”主线程免受工作线程引起的错误(例如解除引用的空指针,除零等). “工作线程”是指由pthread_create()创建的posix线程.
不幸的是,我们不能使用例外 – 所以没有“捕获”等.
这是我的测试程序(C):
void* workerThreadFunc(void* threadId) { int* a = NULL; *a = 5; //Error (segmentation fault) pthread_exit(NULL); } int main() { cout << "Main thread start" << endl; pthread_t workerThread; pthread_attr_t attr; pthread_attr_init(&attr); pthread_attr_setdetachstate(&attr,PTHREAD_CREATE_JOINABLE); pthread_create(&workerThread,&attr,workerThreadFunc,(void*)0); pthread_join(workerThread,NULL); cout << "Main thread end" << endl; }
在上面的示例中,workerThread引起的错误将终止整个程序.但我希望主线程继续运行,尽管这个错误.这有可能实现吗?