使用pthread库时'timespec':'struct'类型的重新定义

时间:2019-01-26 08:27:06

标签: c

enter image description here出现输出错误

  

'timespec':'struct'类型重新定义   我使用Visual Studio 2017,C编译器   我使用Windows 7

我不明白是什么问题。

#include <stdio.h>
#include <pthread.h>

#define NUM_THREADS 4

void *hello(void *arg) { /* thread main */
  printf("Hello Thread\n");
  return 0;
}

int main(void) {
  int i;
  pthread_t tid[NUM_THREADS];

  for (i = 0; i < NUM_THREADS; i++) { /* create/fork threads */
    pthread_create(&tid[i], NULL, hello, NULL);
  }

  for (i = 0; i < NUM_THREADS; i++) { /* wait/join threads */
    pthread_join(tid[i], NULL);
  }
  return 0;
}

0 个答案:

没有答案