pthread_create
2015-10-30 22:31:59 1 举报
`pthread_create`是一个在POSIX线程(Pthreads)库中定义的函数,用于创建一个新的线程。这个函数需要四个参数:第一个参数是指向一个`pthread_t`类型的指针,该指针将用于存储新创建线程的标识符;第二个参数是一个指定新线程入口点的函数指针;第三个参数是传递给新线程入口点函数的参数;第四个参数是线程属性对象,用于设置线程的分离状态、堆栈大小等属性。 当`pthread_create`函数成功时,它会返回0,否则返回一个非零错误码。新创建的线程将从指定的函数开始执行,并拥有与调用线程相同的进程和地址空间。
作者其他创作
大纲/内容
count_words(file1)
total_words++;
count_words(file2)
fclose(file1)
pthread_mutex_lock(&counter_clock);
Return();
printf(pthread2);
fclose(file2)
pthread_mutex_unlock(&counter_clock);
Int total_words=0;
printf(total_words);
printf(pthread1);
0 条评论
下一页