初级会员 
  
	- 积分
 - 114
 
        - 金钱
 - 114 
 
       - 注册时间
 - 2015-12-8
 
      - 在线时间
 - 20 小时
 
 
 
 | 
 
 
发表于 2017-10-25 19:18:39
|
显示全部楼层
 
 
 
 
os_thread_def 这是什么意思 
   
 
typedef const struct os_thread_def  { 
  char *                 name; 
  os_pthread             pthread;    ///< start address of thread function 
  osPriority             tpriority;    ///< initial thread priority 
  uint32_t               instances;    ///< maximum number of instances of that thread function 
  uint32_t               stacksize;    ///< stack size requirements in bytes; 0 is default stack size 
} osThreadDef_t; 
 |   
 
 
 
 |