摘要:
线程属性pthread_attr_ttypedefstruct{int detachstate; 线程分离状态int schedpolicy; 线程调度策略structsched_param schedparam; 线程调度参数int inheritsched; 线程调度继承性int scope; ... 阅读全文
摘要:
转自:http://www.cnblogs.com/mydomain/archive/2011/08/14/2138454.htm线程的分离与结合 在任何一个时间点上,线程是可结合的(joinable),或者是分离的(detached)。一个可结合的线程能够被其他线程收回其资源和杀死;在被其他线程回... 阅读全文