首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴kelly01的代码贴全部
#include<pthread.h>
#include<stdio.h>
void identify() {
pid_t pid = getpid();
printf("My pid is %d\n", pid);
return NULL;
}
void main() {
pthread_t thread;
pthread_create(&thread, NULL, (void *) &identify, NULL);
identify();
}
阅读全部 | 2016年11月7日 13:18
1
kelly01