pthread_create()

#include <pthread.h>

int pthread_create(pthread_t *restrict tidp,
const pthread_attr_t *restrict attr,
void *(*start_rtn)(void),
void *restrict arg);

返回值

若成功则返回0,否则返回出错编

参数

第一个参数为指向线程标识符指针
第二个参数用来设置线程属性。 一般NULL
第三个参数是线程运行函数的起始地址。
最后一个参数是运行函数的参数 。一般NULL
posted on 2013-07-08 13:28  hrbust_09zhangyabin  阅读(333)  评论(0编辑  收藏  举报