我看到這個問題Simple example of threading in C++ 但我的問題是,我想在Windows 32中運行此程序,似乎Pthread無法識別在Windows!請告訴我什麼是問題?這是我的錯誤: 致命錯誤C1010:查找預編譯頭時出現意外的文件結尾。 ?你忘了「#包括文件‘StdAfx.h’」添加到您的源(我加的#include「StdAfx.h中,但它仍然 不工作!)Windows線程與C++
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define NUM_THREADS 5
void *PrintHello(void *threadid)
{
long tid;
tid = (long)threadid;
printf("Hello World! It's me, thread #%ld!\n", tid);
pthread_exit(NULL);
}
int main(int argc, char *argv[])
{
pthread_t threads[NUM_THREADS];
int rc;
long t;
for(t=0;t<NUM_THREADS;t++)
{
printf("In main: creating thread %ld\n", t);
rc = pthread_create(&threads[t], NULL, PrintHello, (void *)t);
if (rc){
printf("ERROR; return code from pthread_create() is %d\n", rc);
exit(-1);
}
}
/* Last thing that main() should do */
pthread_exit(NULL);
}
你看了這個錯誤嗎? – SLaks
我添加了#include「StdAfx.h」,但它仍然不能識別pthread! – Sara
現在你包含了什麼錯誤「StdAfx.h」? – ChrisF