亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? os_core.c

?? 任務一 任務管理 任務二 優先級天花板 任務三 哲學家就餐 任務四 消息隊列 任務五 時鐘中斷
?? C
?? 第 1 頁 / 共 4 頁
字號:
/*
*********************************************************************************************************
*                                                uC/OS-II
*                                          The Real-Time Kernel
*                                             CORE FUNCTIONS
*
*                          (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
*                                           All Rights Reserved
*
* File : OS_CORE.C
* By   : Jean J. Labrosse
*********************************************************************************************************
*/

#ifndef  OS_MASTER_FILE
#define  OS_GLOBALS
#include "includes.h"
#endif

/*
*********************************************************************************************************
*                              MAPPING TABLE TO MAP BIT POSITION TO BIT MASK
*
* Note: Index into table is desired bit position, 0..7
*       Indexed value corresponds to bit mask
*********************************************************************************************************
*/

INT8U  const  OSMapTbl[]   = {0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80};

/*
*********************************************************************************************************
*                                       PRIORITY RESOLUTION TABLE
*
* Note: Index into table is bit pattern to resolve highest priority
*       Indexed value corresponds to highest priority bit position (i.e. 0..7)
*********************************************************************************************************
*/

INT8U  const  OSUnMapTbl[] = {
    0, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x00 to 0x0F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x10 to 0x1F                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x20 to 0x2F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x30 to 0x3F                             */
    6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x40 to 0x4F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x50 to 0x5F                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x60 to 0x6F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x70 to 0x7F                             */
    7, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x80 to 0x8F                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0x90 to 0x9F                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xA0 to 0xAF                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xB0 to 0xBF                             */
    6, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xC0 to 0xCF                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xD0 to 0xDF                             */
    5, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0,       /* 0xE0 to 0xEF                             */
    4, 0, 1, 0, 2, 0, 1, 0, 3, 0, 1, 0, 2, 0, 1, 0        /* 0xF0 to 0xFF                             */
};

/*
*********************************************************************************************************
*                                       FUNCTION PROTOTYPES
*********************************************************************************************************
*/
static  void  OS_InitEventList(void);
static  void  OS_InitMisc(void);
static  void  OS_InitRdyList(void);
static  void  OS_InitTaskIdle(void);
static  void  OS_InitTaskStat(void);
static  void  OS_InitTCBList(void);

/*$PAGE*/
/*
*********************************************************************************************************
*                                             INITIALIZATION
*
* Description: This function is used to initialize the internals of uC/OS-II and MUST be called prior to
*              creating any uC/OS-II object and, prior to calling OSStart().
*
* Arguments  : none
*
* Returns    : none
*********************************************************************************************************
*/

void  OSInit (void)
{
#if OS_VERSION >= 204
    OSInitHookBegin();                                           /* Call port specific initialization code   */
#endif

    OS_InitMisc();                                               /* Initialize miscellaneous variables       */

    OS_InitRdyList();                                            /* Initialize the Ready List                */
    OS_InitTCBList();                                            /* Initialize the free list of OS_TCBs      */
    OS_InitEventList();                                          /* Initialize the free list of OS_EVENTs    */

#if (OS_VERSION >= 251) && (OS_FLAG_EN > 0) && (OS_MAX_FLAGS > 0)
    OS_FlagInit();                                               /* Initialize the event flag structures     */
#endif

#if (OS_MEM_EN > 0) && (OS_MAX_MEM_PART > 0)
    OS_MemInit();                                                /* Initialize the memory manager            */
#endif

#if (OS_Q_EN > 0) && (OS_MAX_QS > 0)
    OS_QInit();                                                  /* Initialize the message queue structures  */
#endif

    OS_InitTaskIdle();                                           /* Create the Idle Task                     */
#if OS_TASK_STAT_EN > 0
    OS_InitTaskStat();                                           /* Create the Statistic Task                */
#endif

#if OS_VERSION >= 204
    OSInitHookEnd();                                             /* Call port specific init. code            */
#endif
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                              ENTER ISR
*
* Description: This function is used to notify uC/OS-II that you are about to service an interrupt
*              service routine (ISR).  This allows uC/OS-II to keep track of interrupt nesting and thus
*              only perform rescheduling at the last nested ISR.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) This function should be called ith interrupts already disabled
*              2) Your ISR can directly increment OSIntNesting without calling this function because
*                 OSIntNesting has been declared 'global'.  
*              3) You MUST still call OSIntExit() even though you increment OSIntNesting directly.
*              4) You MUST invoke OSIntEnter() and OSIntExit() in pair.  In other words, for every call
*                 to OSIntEnter() at the beginning of the ISR you MUST have a call to OSIntExit() at the
*                 end of the ISR.
*              5) You are allowed to nest interrupts up to 255 levels deep.
*              6) I removed the OS_ENTER_CRITICAL() and OS_EXIT_CRITICAL() around the increment because
*                 OSIntEnter() is always called with interrupts disabled.
*********************************************************************************************************
*/

void  OSIntEnter (void)
{
    if (OSRunning == TRUE) {
        if (OSIntNesting < 255) {
            OSIntNesting++;                      /* Increment ISR nesting level                        */
        }
    }
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                               EXIT ISR
*
* Description: This function is used to notify uC/OS-II that you have completed serviving an ISR.  When
*              the last nested ISR has completed, uC/OS-II will call the scheduler to determine whether
*              a new, high-priority task, is ready to run.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) You MUST invoke OSIntEnter() and OSIntExit() in pair.  In other words, for every call
*                 to OSIntEnter() at the beginning of the ISR you MUST have a call to OSIntExit() at the
*                 end of the ISR.
*              2) Rescheduling is prevented when the scheduler is locked (see OS_SchedLock())
*********************************************************************************************************
*/

void  OSIntExit (void)
{
#if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
    OS_CPU_SR  cpu_sr;
#endif
    
    
    if (OSRunning == TRUE) {
        OS_ENTER_CRITICAL();
        if (OSIntNesting > 0) {                            /* Prevent OSIntNesting from wrapping       */
            OSIntNesting--;
        }
        if ((OSIntNesting == 0) && (OSLockNesting == 0)) { /* Reschedule only if all ISRs complete ... */
            OSIntExitY    = OSUnMapTbl[OSRdyGrp];          /* ... and not locked.                      */
            OSPrioHighRdy = (INT8U)((OSIntExitY << 3) + OSUnMapTbl[OSRdyTbl[OSIntExitY]]);
            if (OSPrioHighRdy != OSPrioCur) {              /* No Ctx Sw if current task is highest rdy */
                OSTCBHighRdy  = OSTCBPrioTbl[OSPrioHighRdy];
                OSCtxSwCtr++;                              /* Keep track of the number of ctx switches */
                OSIntCtxSw();                              /* Perform interrupt level ctx switch       */
            }
        }
        OS_EXIT_CRITICAL();
    }
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                          PREVENT SCHEDULING
*
* Description: This function is used to prevent rescheduling to take place.  This allows your application
*              to prevent context switches until you are ready to permit context switching.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) You MUST invoke OSSchedLock() and OSSchedUnlock() in pair.  In other words, for every
*                 call to OSSchedLock() you MUST have a call to OSSchedUnlock().
*********************************************************************************************************
*/

#if OS_SCHED_LOCK_EN > 0
void  OSSchedLock (void)
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr;
#endif    
    
    
    if (OSRunning == TRUE) {                     /* Make sure multitasking is running                  */
        OS_ENTER_CRITICAL();
        if (OSLockNesting < 255) {               /* Prevent OSLockNesting from wrapping back to 0      */
            OSLockNesting++;                     /* Increment lock nesting level                       */
        }
        OS_EXIT_CRITICAL();
    }
}
#endif    

/*$PAGE*/
/*
*********************************************************************************************************
*                                          ENABLE SCHEDULING
*
* Description: This function is used to re-allow rescheduling.
*
* Arguments  : none
*
* Returns    : none
*
* Notes      : 1) You MUST invoke OSSchedLock() and OSSchedUnlock() in pair.  In other words, for every
*                 call to OSSchedLock() you MUST have a call to OSSchedUnlock().
*********************************************************************************************************
*/

#if OS_SCHED_LOCK_EN > 0
void  OSSchedUnlock (void)
{
#if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
    OS_CPU_SR  cpu_sr;
#endif    
    
    
    if (OSRunning == TRUE) {                                   /* Make sure multitasking is running    */
        OS_ENTER_CRITICAL();
        if (OSLockNesting > 0) {                               /* Do not decrement if already 0        */
            OSLockNesting--;                                   /* Decrement lock nesting level         */
            if ((OSLockNesting == 0) && (OSIntNesting == 0)) { /* See if sched. enabled and not an ISR */
                OS_EXIT_CRITICAL();
                OS_Sched();                                    /* See if a HPT is ready                */
            } else {
                OS_EXIT_CRITICAL();
            }
        } else {
            OS_EXIT_CRITICAL();
        }
    }
}
#endif    

/*$PAGE*/
/*
*********************************************************************************************************
*                                          START MULTITASKING
*
* Description: This function is used to start the multitasking process which lets uC/OS-II manages the
*              task that you have created.  Before you can call OSStart(), you MUST have called OSInit()

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
色天使久久综合网天天| 99天天综合性| 婷婷国产v国产偷v亚洲高清| 欧美国产视频在线| 久久久久久久精| 精品福利一二区| 久久九九国产精品| 国产精品传媒视频| 亚洲一区中文日韩| 视频一区二区三区在线| 男女性色大片免费观看一区二区| 午夜av一区二区三区| 天天影视涩香欲综合网| 蜜桃视频第一区免费观看| 美腿丝袜在线亚洲一区| 久久精品国产一区二区三区免费看| 久久丁香综合五月国产三级网站| 久久99久久久久| 国产v综合v亚洲欧| 日本高清成人免费播放| 91精品黄色片免费大全| 精品国产一区a| 国产精品热久久久久夜色精品三区| 国产精品国产三级国产aⅴ中文 | 悠悠色在线精品| 婷婷综合另类小说色区| 国产呦精品一区二区三区网站| 懂色av一区二区夜夜嗨| 欧美这里有精品| 精品国产乱码久久久久久牛牛| 国产清纯在线一区二区www| 亚洲免费观看高清完整版在线观看熊 | 在线免费观看日韩欧美| 日韩一级片在线播放| 国产视频在线观看一区二区三区| 一区二区高清免费观看影视大全| 日韩激情中文字幕| av男人天堂一区| 精品久久人人做人人爽| 亚洲精品日韩一| 国产成人一区在线| 欧美放荡的少妇| 亚洲欧洲三级电影| 久久国产精品第一页| 欧美在线制服丝袜| 中文字幕欧美一区| 韩国午夜理伦三级不卡影院| 欧美在线999| 亚洲欧美综合在线精品| 国产一区二区视频在线| 91麻豆精品国产91久久久更新时间 | 欧美精品一卡两卡| 亚洲三级在线免费| 国产成人日日夜夜| 久久夜色精品一区| 美日韩一区二区三区| 欧亚一区二区三区| 综合分类小说区另类春色亚洲小说欧美 | 午夜日韩在线观看| 色先锋资源久久综合| 国产精品成人在线观看| 国产激情一区二区三区四区 | 久久久精品蜜桃| 蜜臀av一区二区三区| 欧美精品成人一区二区三区四区| 中文字幕一区二区三区蜜月| 国产乱人伦偷精品视频不卡| 日韩欧美在线1卡| 欧美aa在线视频| 日韩精品在线看片z| 天天综合色天天综合| 欧美日韩视频不卡| 亚洲成a人在线观看| 欧美美女激情18p| 香蕉加勒比综合久久| 91超碰这里只有精品国产| 偷拍一区二区三区| 欧美一区二区美女| 精品亚洲成a人| 亚洲精品在线免费播放| 国产乱码精品1区2区3区| 久久女同互慰一区二区三区| 九九在线精品视频| 国产午夜精品在线观看| 成人午夜激情片| 综合分类小说区另类春色亚洲小说欧美 | 色天天综合色天天久久| 亚洲国产wwwccc36天堂| 欧美日韩欧美一区二区| 麻豆极品一区二区三区| 国产欧美日本一区视频| www.日韩大片| 亚洲福利电影网| 欧美mv和日韩mv国产网站| 国产不卡在线视频| 亚洲最大成人网4388xx| 日韩免费高清av| jiyouzz国产精品久久| 亚洲精品网站在线观看| 欧美一区二区黄| 成人激情小说乱人伦| 亚洲一区二区av电影| 欧美电视剧在线看免费| 国产不卡免费视频| 丝袜美腿一区二区三区| 国产欧美日产一区| 欧美日韩一区二区三区在线看| 日韩电影在线一区二区三区| 久久精品亚洲麻豆av一区二区| 99久久精品国产观看| 免费观看在线色综合| 国产精品国产三级国产有无不卡 | 久久精品噜噜噜成人av农村| 国产精品午夜久久| 制服视频三区第一页精品| 丁香网亚洲国际| 日韩成人av影视| 亚洲另类在线一区| 久久久亚洲精品一区二区三区| 色综合久久精品| 国产精品亚洲人在线观看| 亚洲高清免费在线| 中文字幕中文乱码欧美一区二区 | 国产成人综合在线观看| 亚洲成人先锋电影| 国产精品国产三级国产| 久久亚洲春色中文字幕久久久| 欧美日本一区二区三区四区| av不卡在线观看| 国内精品免费在线观看| 五月天中文字幕一区二区| 亚洲欧洲精品一区二区三区不卡| 日韩一区二区电影在线| 欧美人牲a欧美精品| 91丨国产丨九色丨pron| 国产91精品久久久久久久网曝门| 麻豆视频观看网址久久| 日韩在线一二三区| 亚洲成av人片在www色猫咪| 一区二区三区资源| 亚洲蜜桃精久久久久久久| 亚洲欧美在线aaa| 国产精品理论在线观看| 中文字幕欧美激情一区| 久久精品人人做| 久久女同精品一区二区| 欧美精品一区二区精品网| 日韩欧美电影一区| 日韩免费看网站| 欧美变态tickle挠乳网站| 精品国内二区三区| 久久色.com| 中文字幕久久午夜不卡| 中文字幕乱码一区二区免费| 国产午夜亚洲精品不卡| 国产精品免费aⅴ片在线观看| 国产亚洲欧美日韩在线一区| 久久美女高清视频| 国产视频视频一区| 国产精品国产三级国产aⅴ入口 | 日韩精品一级中文字幕精品视频免费观看 | 日韩久久久精品| 欧美精品一区二区三| 欧美国产成人在线| 亚洲精品日韩一| 日本欧美一区二区三区| 麻豆精品在线观看| 高清beeg欧美| 在线免费观看日本一区| 欧美一区二区视频观看视频| 久久综合狠狠综合久久综合88 | 国产一区二区三区在线看麻豆| 久久国产视频网| 高清视频一区二区| 欧美在线一二三四区| 日韩三级伦理片妻子的秘密按摩| 久久女同互慰一区二区三区| 亚洲三级电影全部在线观看高清| 亚洲高清中文字幕| 国内精品国产成人国产三级粉色| 9色porny自拍视频一区二区| 欧美日韩国产小视频在线观看| 91精品国产综合久久久久久久| 国产三级一区二区三区| 亚洲精品中文在线影院| 久久精品国产一区二区| 91网站最新地址| 欧美大胆一级视频| 亚洲另类春色国产| 国产一区视频导航| 欧美三级视频在线观看| 日本一区二区免费在线| 日韩国产一二三区| 97aⅴ精品视频一二三区| 日韩欧美国产高清| 亚洲成人动漫在线免费观看| 大白屁股一区二区视频| 欧美一区二区精品| 亚洲国产中文字幕在线视频综合| 国产一区在线精品|