attributes.C
上传用户:shtangtang
上传日期:2007-01-04
资源大小:167k
文件大小:0k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #include "thread_attributes.h"
  2. //
  3. // attributes - constructor
  4. //
  5. // initialize the attribute structure with default values.
  6. attributes::attributes()
  7. {
  8.   a_scope       = process_private;
  9.   a_inherit     = attr_explicit;
  10.   a_policy      = other;
  11.   a_state       = attr_joinable;
  12.   a_param.sched_priority = 0;
  13. }