linux pthread_create
int pthread_create(pthread_t *thread, const pthread_attr_t *attr,
void *(*start_routine) (void *), void* arg);
Linux中创建线程用这个函数,用man命令查询该函数得知,当创建线程成功时,
*thread
存储着线程id.
如果创建线程失败,
*thread
中的内容未定义。这个未定义是什么意思???
如果调用该函数之前,已经为
*thread
赋了值,创建线程失败后,
*thread
的值会被改变吗?
还请有了解解释一番 谢谢了。。。
徐姓少年Y
11 years, 5 months ago