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

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

?? os_core.c

?? uCOS-II內核源代碼及相關文檔,可以看看。
?? 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一区二区三区免费野_久草精品视频
亚洲欧美区自拍先锋| 国产精品中文字幕一区二区三区| 亚洲妇熟xx妇色黄| 国内精品写真在线观看| 欧美综合久久久| 中文字幕精品在线不卡| 青青草91视频| 欧美午夜视频网站| 国产精品久久久久影院| 久久精品99久久久| 欧美美女视频在线观看| 亚洲欧洲日韩av| 国产专区欧美精品| 日韩三级电影网址| 午夜精品久久久久久久久| 91美女在线观看| 欧美韩日一区二区三区四区| 精品一区二区日韩| 欧美日韩精品一区二区三区四区 | 免费成人小视频| 91香蕉国产在线观看软件| 国产亚洲人成网站| 韩国中文字幕2020精品| 欧美一区二区成人| 亚洲v精品v日韩v欧美v专区| 色哟哟一区二区三区| 中文字幕av一区 二区| 激情久久五月天| 91麻豆精品国产91久久久更新时间| 亚洲激情五月婷婷| 91在线码无精品| 亚洲人成小说网站色在线| 成人亚洲一区二区一| 欧美精彩视频一区二区三区| 国产精品一区二区在线观看网站| 日韩一二三四区| 精品制服美女丁香| 久久综合九色综合97婷婷女人 | 91精品91久久久中77777| 国产精品嫩草影院com| 国产经典欧美精品| 久久久美女艺术照精彩视频福利播放| 久久国产成人午夜av影院| 日韩欧美电影一二三| 日韩二区在线观看| 欧美电影免费提供在线观看| 精品一区二区免费看| 久久婷婷色综合| 丁香六月综合激情| 亚洲欧美色一区| 精品视频一区三区九区| 五月婷婷久久综合| 欧美一卡2卡三卡4卡5免费| 青青草国产成人99久久| 久久久久久久久久看片| 国产白丝网站精品污在线入口| 亚洲一区二区三区四区在线免费观看 | 免费成人深夜小野草| 精品理论电影在线观看| 国精品**一区二区三区在线蜜桃| 久久久精品免费免费| 99国产欧美另类久久久精品| 亚洲老司机在线| 欧美日韩aaaaaa| 麻豆精品视频在线观看视频| 久久久久久久久久久久久久久99 | 亚洲精品国久久99热| 欧美日韩高清一区| 久久精品免费观看| 成人免费小视频| 91精品国产综合久久婷婷香蕉 | 成人一区二区三区中文字幕| 亚洲欧美日韩综合aⅴ视频| 欧美老女人第四色| 国产乱理伦片在线观看夜一区| 中文字幕佐山爱一区二区免费| 欧美日韩在线播放三区| 久久国产剧场电影| 亚洲丝袜另类动漫二区| 51精品国自产在线| 成人一区二区三区视频| 香港成人在线视频| 国产欧美日韩精品在线| 精品视频1区2区3区| 国产一区二区三区黄视频 | 日韩欧美一级二级| 91在线观看污| 美女一区二区视频| 亚洲影视资源网| 欧美国产97人人爽人人喊| 欧美日韩和欧美的一区二区| 东方欧美亚洲色图在线| 轻轻草成人在线| 亚洲男同性恋视频| 国产亚洲成av人在线观看导航| 欧美日韩成人高清| 高清shemale亚洲人妖| 蜜臀av性久久久久蜜臀aⅴ流畅| 亚洲美腿欧美偷拍| 久久亚洲捆绑美女| 这里只有精品电影| 91视频.com| 成人手机在线视频| 黄色日韩网站视频| 日本欧美肥老太交大片| 亚洲国产成人av好男人在线观看| 日本视频一区二区| 国产精品美女久久久久久2018| 色婷婷av一区二区三区之一色屋| 成人av免费网站| 国产麻豆欧美日韩一区| 久久av中文字幕片| 免费成人在线影院| 蜜臀99久久精品久久久久久软件| 亚洲一级在线观看| 一区二区三区丝袜| 亚洲欧美电影一区二区| 亚洲欧美日韩一区| 毛片av一区二区| 天堂成人国产精品一区| 亚洲国产精品久久久男人的天堂 | 91麻豆精品秘密| 国产大陆a不卡| 国产成人自拍高清视频在线免费播放| 极品美女销魂一区二区三区免费| 蜜桃av一区二区| 国产乱理伦片在线观看夜一区| 国产黄色91视频| 国产98色在线|日韩| 国产成人精品在线看| www.爱久久.com| 欧美在线看片a免费观看| 在线欧美日韩精品| 欧美精品视频www在线观看| 7777女厕盗摄久久久| 欧美变态tickling挠脚心| 久久色.com| 中文字幕日韩精品一区| 亚洲卡通欧美制服中文| 日日夜夜免费精品| 国产美女在线观看一区| www.在线欧美| 欧美高清一级片在线| 日韩精品一区二区三区蜜臀| 国产欧美精品区一区二区三区 | 国产欧美精品国产国产专区| 国产精品天天摸av网| 一区二区三区在线观看视频| 天堂久久一区二区三区| 国产成人亚洲综合a∨猫咪| 色av一区二区| 欧美一区二区女人| 亚洲国产精品精华液ab| 亚洲一区免费观看| 九色综合狠狠综合久久| 99v久久综合狠狠综合久久| 日韩欧美国产综合一区 | 精品国产91亚洲一区二区三区婷婷| 国产日产欧美一区二区视频| 亚洲欧美经典视频| 久久精品国产99久久6| av一区二区三区四区| 日韩一区二区三区三四区视频在线观看| 国产拍欧美日韩视频二区| 亚洲综合一二区| 成人免费毛片高清视频| 欧美高清你懂得| 亚洲欧美在线视频| 激情国产一区二区| 欧美男生操女生| 亚洲日本va在线观看| 国产乱一区二区| 2020国产成人综合网| 亚洲大片在线观看| 色悠久久久久综合欧美99| 久久在线观看免费| 日韩高清不卡一区| 精品婷婷伊人一区三区三| 国产精品久久久久久久久快鸭| 麻豆免费精品视频| 欧美三级电影在线看| 中文字幕一区av| 国产91在线|亚洲| 亚洲精品一区二区三区影院| 亚洲国产一区视频| 91色|porny| 亚洲欧洲av一区二区三区久久| 韩国午夜理伦三级不卡影院| 777亚洲妇女| 亚洲高清免费观看| 色成人在线视频| 中文字幕一区二区三区av| 高清久久久久久| 国产人伦精品一区二区| 久久成人精品无人区| 91久久一区二区| 亚洲精品日日夜夜| 色呦呦日韩精品| 亚洲国产精品久久艾草纯爱| 欧美色电影在线|