pthread_create
头文件 :
#include <pthread.h>
函数定义:
int pthread_create(pthread_t * thread,const pthread_attr_t * attr,
void *(* start_routine)(void *),void * arg);
来自< http://pubs.opengroup.org/onlinepubs/7908799/xsh/pthread_create.html >
描述 :
它的功能是创建线程(实际上就是确定调用该线程函数的入口点),在线程创建以后,就开始运行相关的线程函数。
参数 :
第二个参数用来设置线程属性。
第三个参数是线程运行函数的起始地址。