我正在尝试学习如何使用pthread库在c中创建线程,我使用以下代码:
#include <stdlib.h>
#include <stdio.h>
#include <semaphore.h>
#include <pthread.h>
static int glob = 0;
static sem_t sem;
static void *threadFunc(void *arg) {
int loops = *((int *) arg);
int loc, j;
for (j = 0; j < loops; j++) {
if (sem_wait(&sem) == -1)
exit(2);
loc = glob;
loc++;
glob = loc;
if (sem_post(&sem) == -1)
exit(2);
}
printf("\n%d %d\n",glob/20,glob);
return NULL;
}
int main(int argc, char *argv[]) {
pthread_t t1, t2, t3, t4;
int s;
int loops = 20;
if (sem_init(&sem, 0, 1) == -1) {
printf("Error, init semaphore\n");
exit(1);
}
s = pthread_create(&t1, NULL, threadFunc, &loops);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_create(&t2, NULL, threadFunc, &loops);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_create(&t3, NULL, threadFunc, &loops);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_create(&t4, NULL, threadFunc, &loops);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_join(t1, NULL);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_join(t2, NULL);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_join(t3, NULL);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
s = pthread_join(t4, NULL);
if (s != 0) {
printf("Error, creating threads\n");
exit(1);
}
printf("glob value %d \n", glob);
exit(0);
}
当我尝试使用threadFunc中的print语句打印它们时,glob的期望值是多少? Shuold他们是20,40,60和80?当我执行上面的程序时,我得到不同的值,如61,50,73和80 !!还是29,76,78,80?怎么会?我执行的EVerytime我得到了不同的glob值。我认为它与信号量有关,但那么glob的值如何降低,就像我给你的第一个输出例子一样?
此外,给pthread_create一个thread_initiate的目的是什么?特别是threadFunc,但一般情况下,处理c中线程的程序员通常使用传递给pthread_create的thread_initiate函数吗?
答案 0 :(得分:0)
我弄清楚了,我没有正确地思考代码。线程并发运行,因此无法确定glob的值是什么。如果两个线程正在运行,第一个线程可能是循环中的5个值,第二个线程可能是2个值,这意味着glob的值为7.当打印glob时,该值将始终大于20的倍数(对于这个特殊的问题)。
至于第二部分,我认为启动例程是线程将要运行的代码。
感谢@WhozCraig和@JoachimPileborg的帮助!