【发布时间】:2014-01-16 10:26:16
【问题描述】:
我是 pthreads 的新手,我正在努力理解它。我看到了一些类似下面的例子。
我可以看到 main() 被 API pthread_exit() 阻止,并且我看到了主要功能被 API pthread_join() 阻止的示例。我无法理解何时使用什么?
我指的是以下网站 - https://computing.llnl.gov/tutorials/pthreads/。我无法理解何时使用pthread_join() 以及何时使用pthread_exit()。
有人可以解释一下吗?此外,我们将不胜感激 pthreads 的良好教程链接。
#include <pthread.h>
#include <stdio.h>
#define NUM_THREADS 5
void *PrintHello(void *threadid)
{
long tid;
tid = (long)threadid;
printf("Hello World! It's me, thread #%ld!\n", tid);
pthread_exit(NULL);
}
int main (int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
long t;
for(t=0; t<NUM_THREADS; t++){
printf("In main: creating thread %ld\n", t);
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
if (rc){
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}
/* Last thing that main() should do */
pthread_exit(NULL);
意识到另一件事,即
pthread_cancel(thread);
pthread_join(thread, NULL);
有时,您想在线程执行时取消它。 您可以使用 pthread_cancel(thread); 来执行此操作。 但是,请记住您需要启用 pthread 取消支持。 此外,取消时的清理代码。
thread_cleanup_push(my_thread_cleanup_handler, resources);
pthread_setcancelstate(PTHREAD_CANCEL_ENABLE, 0);
static void my_thread_cleanup_handler(void *arg)
{
// free
// close, fclose
}
【问题讨论】: