attributes.c
来自「多线程库」· C语言 代码 · 共 16 行
C
16 行
#include "thread_attributes.h"//// attributes - constructor//// initialize the attribute structure with default values.attributes::attributes(){ a_scope = process_private; a_inherit = attr_explicit; a_policy = other; a_state = attr_joinable; a_param.sched_priority = 0;}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?