摘要: 1、每个POSIX线程有一个相连的属性对象来表示属性。线程属性对象的类型是pthread_attr_t,pthread_attr_t 在文件/usr/include/bits/pthreadtypes.h中定义。2、代码及运行结果:/* * pthreadAttr.c * * Created on: Aug 17, 2013 * Author: root */#include #include #include #include void * my_thread(void * arg){ int retval = 0; pthread_attr_t attr; s... 阅读全文
posted @ 2013-08-17 22:29 wangle100 阅读(826) 评论(0) 推荐(0) 编辑