标签:
pthread接口允许我们通过设置与不同对象相关联的属性来微调线程以及同步对象的行为。通常来说,管理这些属性的函数符合如下模式:
#include <pthread.h>
int pthread_attr_init(pthread_attr_t *attr);
int pthread_attr_destroy(pthread_attr_t *attr);
Both return: 0 if OK, error number on failure.
函数pthread_attr_destroy将会释放掉初始化时分配的动态内存,并且设置属性对象为无效数值,所以如果它被错误地使用,函数pthread_create将会返回一个错误。
标签:
原文地址:http://www.cnblogs.com/U201013687/p/5602348.html