μcosii源码试读3- OS_InitTCBList();任务控制块链表初始化及其功能
- UID
- 1029342
- 性别
- 男
|
μcosii源码试读3- OS_InitTCBList();任务控制块链表初始化及其功能
上次是就绪表,这次是任务控制块,初始化程序如下
点击(此处)折叠或打开
- /*
- *********************************************************************************************************
- * INITIALIZATION
- * INITIALIZE THE FREE LIST OF TASK CONTROL BLOCKS
- *
- * Description: This function is called by OSInit() to initialize the free list of OS_TCBs.
- *
- * Arguments : none
- *
- * Returns : none
- *********************************************************************************************************
- */
- static void OS_InitTCBList (void)
- {
- INT8U i;
- OS_TCB *ptcb1;
- OS_TCB *ptcb2;
|
|
|
|
|
|