亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
亚洲人成精品久久久久久| 欧美唯美清纯偷拍| 国产综合久久久久久久久久久久| 亚洲欧洲av在线| 一区二区三区在线视频播放| 亚洲免费在线视频一区 二区| 最新久久zyz资源站| 亚洲精品一卡二卡| 亚洲已满18点击进入久久| 亚洲线精品一区二区三区| 日本伊人精品一区二区三区观看方式 | 九九视频精品免费| 国产一区二区三区香蕉| 国产精品一区在线观看你懂的| 成人app网站| 538在线一区二区精品国产| 久久免费电影网| 亚洲卡通动漫在线| 精品制服美女丁香| 色视频一区二区| 精品国产91久久久久久久妲己| 亚洲色图在线看| 美日韩黄色大片| 色婷婷精品久久二区二区蜜臀av| 欧美日韩精品专区| 国产精品对白交换视频| 轻轻草成人在线| 欧美日韩高清一区二区三区| 久久综合九色综合久久久精品综合| 国产精品久久三| 国产精品一二三四| 精品1区2区在线观看| 视频在线观看91| 欧美三级资源在线| 亚洲欧美成aⅴ人在线观看| 国产精品一二三四区| 精品久久久久久亚洲综合网| 亚洲一区二区三区视频在线| 91麻豆.com| 亚洲免费资源在线播放| 一本色道a无线码一区v| 国产精品嫩草99a| www.视频一区| 亚洲日本丝袜连裤袜办公室| a4yy欧美一区二区三区| 国产精品护士白丝一区av| 成人国产在线观看| 国产精品久线观看视频| www.亚洲精品| 亚洲欧洲一区二区三区| 成人黄色电影在线| 欧美肥大bbwbbw高潮| 6080亚洲精品一区二区| 亚洲激情在线激情| 欧美性xxxxxxxx| 久久精工是国产品牌吗| 久久久久国产免费免费| 日本久久一区二区三区| 日韩精品成人一区二区在线| 久久婷婷色综合| 99国产精品久久久久久久久久| 亚洲三级在线观看| 99国产精品久久久久久久久久久| 亚洲欧美日韩国产中文在线| 69堂成人精品免费视频| 国产盗摄一区二区| 午夜久久久久久| 亚洲丝袜精品丝袜在线| 26uuu另类欧美| 欧美日韩国产一级二级| 成人看片黄a免费看在线| 日韩高清不卡在线| 亚洲一区二区在线视频| 中文av一区特黄| 精品对白一区国产伦| 欧美午夜一区二区| 色狠狠综合天天综合综合| 国产精品自拍在线| 青青草97国产精品免费观看| 中文字幕中文字幕一区| 久久午夜国产精品| 91视频一区二区| 成人黄色在线视频| 国产在线看一区| 国产一区亚洲一区| 久久99精品网久久| 久久国产三级精品| 国内一区二区在线| 国产成人精品亚洲日本在线桃色| 美国欧美日韩国产在线播放| 青青国产91久久久久久| 日韩和的一区二区| 国产又黄又大久久| 成人影视亚洲图片在线| 本田岬高潮一区二区三区| 99久久精品国产一区| 97se亚洲国产综合自在线观| 一本一本大道香蕉久在线精品 | 亚洲精品一区二区三区99| 日韩精品中午字幕| 久久久久久久综合色一本| 精品久久久久久久久久久久久久久久久| 成人免费视频一区二区| 97精品电影院| 欧美成人一区二区三区片免费 | yourporn久久国产精品| 在线免费观看日本一区| 91精品国模一区二区三区| 国产亚洲人成网站| 天天综合色天天综合| 粉嫩13p一区二区三区| 在线不卡的av| 久久亚洲精品小早川怜子| 欧美精品一卡两卡| 3atv一区二区三区| 久久久久久电影| 五月婷婷激情综合| 成人看片黄a免费看在线| 欧美一级高清大全免费观看| 中文字幕中文字幕在线一区| 九九久久精品视频| 欧美唯美清纯偷拍| 亚洲女同一区二区| 成人短视频下载| 亚洲精品一区在线观看| 日韩二区三区在线观看| 在线国产亚洲欧美| 中文字幕亚洲不卡| 99re这里都是精品| 中文字幕中文字幕在线一区 | 亚洲亚洲人成综合网络| 国产九色精品成人porny| 日韩一级高清毛片| 日韩成人一区二区| 欧美日产国产精品| 日韩av电影免费观看高清完整版在线观看| 成人av免费在线播放| 国产欧美一区二区精品婷婷| 国产真实精品久久二三区| 精品福利二区三区| 国产v综合v亚洲欧| 亚洲人成在线观看一区二区| 99久久777色| 亚洲一区二区三区美女| 日韩欧美一区在线| 国产精品自拍在线| 亚洲欧美另类小说| 日韩欧美国产小视频| 成人永久免费视频| 亚洲成av人片| 欧美国产成人精品| 欧美日韩精品三区| 国产成人精品在线看| 一区二区成人在线视频| 精品999在线播放| 91丨九色丨黑人外教| 美女一区二区视频| 亚洲欧美日韩国产手机在线 | 美女一区二区视频| 亚洲欧洲av在线| 久久毛片高清国产| 欧美一区午夜精品| 色综合天天综合| 久久不见久久见免费视频7| 亚洲色图欧美激情| 久久久亚洲精华液精华液精华液| 色综合天天综合网国产成人综合天 | 亚洲精品免费在线观看| 国产片一区二区| www日韩大片| 精品久久久久久无| 欧美日韩午夜在线视频| 91成人免费电影| 色婷婷久久久久swag精品| 99re热视频精品| 97se亚洲国产综合自在线| 国产ts人妖一区二区| 国产在线精品一区二区夜色| 蜜桃精品视频在线| 美国三级日本三级久久99| 久久精品国产精品亚洲精品| 奇米综合一区二区三区精品视频| 亚洲视频中文字幕| 国产精品久久久久一区二区三区| 国产精品久久福利| 色先锋资源久久综合| 国产一区二区美女诱惑| 国产成人精品影院| 91毛片在线观看| 91麻豆精品国产自产在线| 日韩精品一区二区在线观看| 亚洲国产精品t66y| 亚洲自拍欧美精品| 卡一卡二国产精品| 国产精品18久久久久久vr| 精品综合免费视频观看| 国产一区在线不卡| 99在线精品视频| 欧美精品久久天天躁| 成人午夜电影网站|