linux多线程编程--学习笔迹4
例1#include"stdio.h"#include"pthread.h"void *func1(void *arg){ printf("second: %ld thread is create\n",(unsigned long)pthread_self()); printf("param is %d\n",*((int *)arg));}int main(){ int