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

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

?? os_core.c

?? 周立功LPC2200系列ARM課件。課件內容含有動畫、內容詳細具體
?? 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一区二区三区免费野_久草精品视频
中文字幕制服丝袜成人av | 欧美午夜一区二区三区 | 国产欧美中文在线| 亚洲午夜精品久久久久久久久| 蜜桃视频一区二区| 色先锋资源久久综合| 精品国产一区久久| 肉色丝袜一区二区| 欧美性色综合网| 亚洲欧美在线观看| 国产精品一区二区你懂的| 欧美久久久久久蜜桃| 一区二区三区国产精华| caoporen国产精品视频| 欧美激情自拍偷拍| 国产成人免费在线| 久久久久久久久99精品| 精品一区二区三区免费毛片爱| 欧美日韩国产高清一区二区三区| 一区二区三区91| 91免费国产在线| 中文字幕一区二区5566日韩| 成人在线视频一区二区| 久久精品一区二区| 国产精品12区| 国产精品午夜久久| gogogo免费视频观看亚洲一| 中文字幕在线不卡| av不卡一区二区三区| 中文字幕在线播放不卡一区| 99久久久久免费精品国产| 日韩美女视频19| 色婷婷综合中文久久一本| 亚洲天堂2016| 欧美日韩一级大片网址| 五月天一区二区| 欧美日韩一二三| 日本亚洲三级在线| 2017欧美狠狠色| 国产99精品视频| 亚洲欧美激情插 | 香蕉加勒比综合久久| 欧美三区在线视频| 日韩av午夜在线观看| 日韩欧美一区在线观看| 国内精品不卡在线| 国产精品久久777777| 色噜噜偷拍精品综合在线| 亚洲午夜久久久久久久久电影院| 欧美日韩一区成人| 精品制服美女丁香| 欧美经典三级视频一区二区三区| 91日韩在线专区| 日韩精品乱码免费| 久久久99精品免费观看| 91美女片黄在线| 免播放器亚洲一区| 欧美国产国产综合| 欧美精品日日鲁夜夜添| 韩国一区二区视频| 亚洲卡通动漫在线| 日韩一二在线观看| av电影在线观看完整版一区二区 | 国产精品网站一区| 在线中文字幕一区| 极品尤物av久久免费看| 亚洲免费观看高清| 亚洲精品一区二区三区精华液 | 国产传媒一区在线| 亚洲精品日韩一| 精品对白一区国产伦| 91小宝寻花一区二区三区| 免费观看日韩av| 亚洲人成精品久久久久| 久久综合久色欧美综合狠狠| 色噜噜夜夜夜综合网| 国产九色sp调教91| 三级在线观看一区二区| 国产精品久久久久久久久快鸭| 欧美日韩国产色站一区二区三区| 国产不卡视频一区| 视频一区二区三区入口| 亚洲欧洲日韩综合一区二区| 日韩一区二区三区免费看| 在线观看区一区二| 成人爱爱电影网址| 狠狠v欧美v日韩v亚洲ⅴ| 亚洲无线码一区二区三区| 亚洲国产岛国毛片在线| 精品黑人一区二区三区久久| 欧美日韩美女一区二区| 91国偷自产一区二区三区观看| 国产很黄免费观看久久| 久久精品理论片| 天堂蜜桃一区二区三区| 悠悠色在线精品| 亚洲精品国产视频| 国产精品天美传媒沈樵| 久久久精品国产99久久精品芒果| 日韩一二三四区| 欧美一区二区在线视频| 欧美无人高清视频在线观看| 99久久国产综合色|国产精品| 国产综合色精品一区二区三区| 美洲天堂一区二卡三卡四卡视频 | 欧美日韩高清一区二区| 色欧美日韩亚洲| 91色在线porny| 色中色一区二区| 日本韩国欧美在线| 色av成人天堂桃色av| 91免费观看在线| 欧美在线看片a免费观看| 一本高清dvd不卡在线观看| 色www精品视频在线观看| 在线观看欧美黄色| 7777精品伊人久久久大香线蕉超级流畅 | 国产中文字幕一区| 国产在线日韩欧美| 国产成人av资源| 丁香婷婷综合色啪| 99精品国产91久久久久久| 91蝌蚪国产九色| 91黄视频在线| 日韩一区二区三区视频| 亚洲精品一线二线三线无人区| 欧美精品一区二区三区在线| 国产日韩视频一区二区三区| 国产精品美女久久久久久| 亚洲精品免费电影| 视频一区视频二区中文字幕| 麻豆久久一区二区| 粗大黑人巨茎大战欧美成人| 色94色欧美sute亚洲线路一ni | 中文字幕va一区二区三区| 亚洲久本草在线中文字幕| 亚洲va韩国va欧美va| 九色综合国产一区二区三区| 国产xxx精品视频大全| 欧洲精品中文字幕| 日韩三级精品电影久久久| 国产午夜亚洲精品理论片色戒| 亚洲理论在线观看| 奇米在线7777在线精品| 国产成人99久久亚洲综合精品| 色一区在线观看| 精品国产不卡一区二区三区| 亚洲欧洲日产国码二区| 亚洲主播在线观看| 国产精品一区在线观看乱码| 日本韩国欧美一区| 久久久久综合网| 亚洲动漫第一页| 国产精品888| 欧美日韩精品三区| 国产精品麻豆99久久久久久| 丝袜美腿亚洲色图| 成人免费av网站| 欧美va亚洲va| 亚洲国产综合人成综合网站| 国产福利一区二区三区视频在线| 欧美日韩在线亚洲一区蜜芽| 国产欧美一二三区| 日韩国产欧美一区二区三区| 不卡av在线网| 久久蜜臀中文字幕| 日韩av一区二区三区四区| 99久久综合色| 久久精品综合网| 久久www免费人成看片高清| 国产成人一区二区精品非洲| 日韩无一区二区| 亚洲免费毛片网站| 国产91丝袜在线18| 日韩欧美自拍偷拍| 日韩国产精品久久| 欧美亚洲精品一区| 亚洲精品国久久99热| 97aⅴ精品视频一二三区| 国产色一区二区| 国产福利一区二区三区视频| 精品少妇一区二区三区免费观看 | 欧美一区二区三区免费在线看| 亚洲色图都市小说| 国产成人三级在线观看| 久久在线观看免费| 狠狠色丁香久久婷婷综合_中 | 欧美一区二区三区免费视频| 亚洲动漫第一页| 在线观看精品一区| 亚洲美女淫视频| 色婷婷一区二区三区四区| 国产精品久久久久久亚洲毛片| 国产精品亚洲一区二区三区妖精| 精品国产乱码91久久久久久网站| 麻豆成人久久精品二区三区红| 欧美日韩精品免费| 免费在线观看一区| 久久蜜桃香蕉精品一区二区三区| 国产乱人伦偷精品视频免下载|