我在我的 Windows 7 机器中使用 MINGW 进行 POSIX 线程编码。
考虑以下简单代码:
#include <stdio.h>
#include <pthread.h>
#include <process.h>
#define NUM_THREADS 5
void *PrintHello(void *threadid)
{
long tid;
tid = (long)threadid;
printf("Hello Dude...!!!\t I am thread no #%ld\n",tid);
pthread_exit(NULL);
}
int main()
{
pthread_t thread[NUM_THREADS];
int rc;
long t;
for(t=0;t<NUM_THREADS;t++)
{
printf("Inside the Main Thread...\nSpawning Threads...\n");
rc=pthread_create(&thread[t],NULL,PrintHello,(void*)t);
if(rc)
{
printf("ERROR: Thread Spawning returned code %d\n",rc);
exit(-1);
}
}
return 0;
}
上面的程序在我的系统中执行时显示以下输出:
Inside the Main Thread...
Spawning Threads...
Inside the Main Thread...
Spawning Threads...
Hello Dude...!!! I am thread no #0
Inside the Main Thread...
Spawning Threads...
Hello Dude...!!! I am thread no #1
Inside the Main Thread...
Spawning Threads...
Hello Dude...!!! I am thread no #2
Inside the Main Thread...
Spawning Threads...
这个程序应该产生 5 个线程。但它只创建了 2 个线程。前 2 行和最后 2 行表明即将调用 pthread_create() 例程。而且由于“rc”变量不是“1”,因此在线程创建中毫无疑问会出现任何错误,否则它会命中“if(rc)”部分。
那么错误在哪里?或者它与我的 Windows 机器有关。