我一直在为一个更大的学校项目编写有关线程同步的测试程序。我编写的一个测试程序是一小段代码来测试“semaphore.h”库。代码如下:
#include <stdio.h>
#include <pthread.h>
#include <semaphore.h>
//Semaphore
sem_t mutex;
//Critical section variable
int crit;
//Method for pthreads
void* method()
{
int x;
//Loop to increment 'crit'
for (x = 0; x < 5000000; x++)
{
sem_wait(&mutex);
//Critical Section
crit++;
sem_post(&mutex);
}
pthread_exit(0);
}
int main()
{
pthread_t t1, t2;
sem_init(&mutex, 0, 1);
pthread_create(&t1, NULL, method, NULL);
pthread_create(&t2, NULL, method, NULL);
pthread_join(t1, NULL);
pthread_join(t2, NULL);
sem_destroy(&mutex);
//This value should be '10000000'
printf("Value of 'crit': %d\n", crit);
return 0;
}
'crit' 变量的最终值应该是 1000 万,但我只得到接近它的数字,表明存在竞争条件。我已经将我的代码与其他示例进行了比较,它看起来不错,但我一直遇到同样的问题。有什么想法吗?