我在 pthread 编程中遇到了一个奇怪的问题我在 vs2005 中使用pthread-w32编译了以下代码
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <pthread.h>
#include <windows.h>
pthread_mutex_t lock;
void* thread1(void *) {
int r1;
while(true) {
pthread_mutex_lock(&lock); // rand is maybe a CS
r1 = rand() % 1500;
pthread_mutex_unlock(&lock);
Sleep(r1); printf("1:%d\n", r1);
}
return NULL;
}
void* thread2(void *) {
int r2;
while(true) {
pthread_mutex_lock(&lock);
r2 = rand() % 1500;
pthread_mutex_unlock(&lock);
Sleep(r2); printf("2:%d\n", r2);
}
return NULL;
}
int main() {
srand((int)time(NULL));
pthread_mutex_init(&lock, NULL);
pthread_t tc_p, tc_v;
pthread_create(&tc_p, NULL, thread1, NULL);
pthread_create(&tc_v, NULL, thread2, NULL);
pthread_join(tc_p, NULL);
pthread_join(tc_v, NULL);
pthread_mutex_destroy(&lock);
return 0;
}
输出是这样的
2:41
1:41
1:467
2:467
1:334
2:334
1:1000
2:1000
就像 rand() 在每两次调用中返回相同的结果并且我有 srand() 但每次运行程序时结果都不会改变
我对多线程编程很陌生,我听说 rand() 不是线程安全的。但我仍然无法弄清楚上面的程序是错误的还是 rand() 函数有问题。