摘要:
#include <stdio.h>#include <pthread.h>void *pthread_fun(void *arg){ while (1) { sleep(1); printf("pthread running\n"); } return((void *)0);}int main(){ pthread_t tid; pthread_create(&tid, NULL, p... 阅读全文
摘要:
gcc test.c -lpthread 阅读全文