多线程编程材料

u467156041 28 0 PDF 2018-12-25 08:12:09

voi d printfids(constchar *s) { pid_t pid; pthread_t tid; pid=getpid(); tid=pthread_self (); printf("%s pid 为 %u , tid 为 %u\n\r",s,pid,tid,ti d); } voi d *run(voi d *arg) { sleep(1); printfids("new thread: "); return ((voi d *)0);//注意 必须这样写 }

多线程编程材料

用户评论
请输入评论内容
评分:
暂无评论