我有以下代码:
#include <pthread.h>
#include <stdio.h>
#include <stdlib.h>
#define LOOPS 10000
void *run(void *arg)
{
int id = strtol(arg,NULL,0);
int i;
for(i=0; i<LOOPS; i++)
{
printf("In %d.\n",id);
}
}
int main()
{
pthread_t p1,p2;
void *res;
pthread_create(&p1,NULL,run,"1");
pthread_create(&p2,NULL,run,"2");
pthread_join(p1,&res);
pthread_join(p2,&res);
return 0;
}
当我运行它时,字符串“In 1”连续显示 10000 次,然后“In 2”连续显示 10000 次,反之亦然。字符串不应该像这里一样交替显示而不是连续显示吗?