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

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

?? os_core.c

?? 基于UCOS的萬年歷
?? 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一区二区三区免费野_久草精品视频
国产精品网友自拍| 91精品国产91久久综合桃花| 日韩电影在线观看网站| 亚洲精选在线视频| 亚洲黄网站在线观看| 亚洲精品少妇30p| 亚洲美女屁股眼交| 亚洲乱码日产精品bd| 自拍视频在线观看一区二区| 亚洲色图欧洲色图婷婷| 亚洲欧美色图小说| 一区二区三区在线播放| 亚洲综合色成人| 日本午夜精品一区二区三区电影| 亚洲国产精品一区二区久久| 日本欧美一区二区在线观看| 日韩av中文字幕一区二区| 秋霞电影一区二区| 国产一区二区女| 成人黄色免费短视频| 97se亚洲国产综合自在线不卡| 色综合久久天天| 欧美日本精品一区二区三区| 欧美第一区第二区| 国产欧美一区二区在线观看| 国产午夜精品久久久久久久| 国产精品全国免费观看高清| 亚洲欧美日韩一区| 日本vs亚洲vs韩国一区三区| 国产成人综合网站| 91蜜桃在线观看| 日韩午夜在线观看| 国产精品无圣光一区二区| 亚洲综合小说图片| 精品亚洲aⅴ乱码一区二区三区| 成人ar影院免费观看视频| 欧美亚洲动漫制服丝袜| 日韩精品一区二| 亚洲永久免费视频| 美国毛片一区二区三区| 99re这里都是精品| 91精品在线免费观看| 国产精品拍天天在线| 天堂精品中文字幕在线| 成人手机电影网| 精品欧美一区二区久久 | 日本最新不卡在线| 成人激情文学综合网| 91麻豆精品国产91久久久久久 | 日韩欧美激情四射| 亚洲免费在线观看| 国产精品亚洲成人| 91精品国产一区二区三区蜜臀| 国产精品亲子乱子伦xxxx裸| 久久草av在线| 欧美一区二区三区精品| 亚洲欧洲av在线| 国产一区二区导航在线播放| 91精品在线一区二区| 一级做a爱片久久| 99久久精品情趣| 国产视频在线观看一区二区三区 | 欧美私人免费视频| 久久精品人人做人人综合| 日本伊人午夜精品| 91精彩视频在线| 一区二区三区四区国产精品| 99在线视频精品| 国产精品欧美久久久久无广告| 九色|91porny| 欧美一区二区三区四区五区| 亚洲大片在线观看| 欧洲国内综合视频| 亚洲精品美国一| 在线视频欧美区| 亚洲一区二区在线免费看| 99精品久久99久久久久| 亚洲欧洲日韩一区二区三区| jiyouzz国产精品久久| 欧美极品美女视频| 国产98色在线|日韩| 欧美极品另类videosde| 丁香六月久久综合狠狠色| 国产精品毛片久久久久久| 成人免费精品视频| 1000精品久久久久久久久| 99久久综合99久久综合网站| 亚洲欧洲日韩女同| 欧美综合一区二区三区| 亚洲va韩国va欧美va精品| 91精品国产色综合久久不卡电影| 男女性色大片免费观看一区二区| 精品国产亚洲一区二区三区在线观看| 久久99国产精品久久| 久久久久久久国产精品影院| 91在线小视频| 日韩中文字幕亚洲一区二区va在线| 日韩免费视频一区二区| 国产河南妇女毛片精品久久久| 日韩伦理免费电影| 欧美日韩国产免费| 精品无码三级在线观看视频| 国产精品国产馆在线真实露脸 | 午夜精品久久久久久久99水蜜桃| 91精品欧美一区二区三区综合在| 精品一区二区三区av| 18欧美亚洲精品| 日韩情涩欧美日韩视频| 风间由美一区二区av101| 亚洲一区免费观看| 久久精品欧美一区二区三区不卡 | 亚洲国产婷婷综合在线精品| 欧美成人乱码一区二区三区| bt7086福利一区国产| 视频一区二区三区在线| 欧美激情在线观看视频免费| 欧美一区二区三区思思人| 国产**成人网毛片九色| 亚洲国产va精品久久久不卡综合| 久久夜色精品国产噜噜av| 欧美在线看片a免费观看| 国产一区高清在线| 亚洲第一狼人社区| 国产精品免费aⅴ片在线观看| 911精品国产一区二区在线| 成人午夜激情在线| 日本 国产 欧美色综合| 亚洲人成在线观看一区二区| 久久久久久97三级| 欧美一卡二卡在线| 91成人网在线| 91尤物视频在线观看| 国产在线精品一区二区不卡了| 亚洲电影激情视频网站| 国产精品嫩草99a| 久久精品视频在线看| 日韩欧美国产三级| 欧美久久久久久蜜桃| 色999日韩国产欧美一区二区| 国产成人激情av| 久久av资源站| 美女高潮久久久| 麻豆精品视频在线观看免费| 日韩影院精彩在线| 亚洲成人资源在线| 一区二区三区久久| 亚洲日本一区二区| 自拍偷拍亚洲欧美日韩| 中文字幕亚洲成人| 国产精品理论片| 国产精品国产三级国产有无不卡| 欧美经典一区二区| 精品国产一区二区三区不卡| 精品国产一区二区三区忘忧草| 91精品国产高清一区二区三区 | 99re在线精品| av亚洲精华国产精华精华| 福利91精品一区二区三区| 国内偷窥港台综合视频在线播放| 欧美96一区二区免费视频| 麻豆极品一区二区三区| 久久成人免费网站| 国产成人免费在线视频| 成人丝袜18视频在线观看| 不卡视频在线看| 91国偷自产一区二区三区观看| 欧美色精品天天在线观看视频| 欧美久久久久免费| 精品国产伦理网| 国产精品电影院| 亚洲成人av免费| 国产一区福利在线| 不卡av在线免费观看| 色爱区综合激月婷婷| 欧美一区二区久久| 国产无遮挡一区二区三区毛片日本| 国产精品午夜免费| 亚洲成av人片一区二区梦乃 | 亚洲午夜私人影院| 日本欧美一区二区三区| 国产乱码一区二区三区| 91蜜桃免费观看视频| 91精品国产免费久久综合| 久久久国产精华| 亚洲一区二区黄色| 久久99久久久久| 91久久久免费一区二区| 制服丝袜亚洲精品中文字幕| 国产色爱av资源综合区| 亚洲精品你懂的| 狠狠久久亚洲欧美| 91久久精品一区二区| 精品国产乱码久久久久久久久| 日韩一区在线免费观看| 日本欧美在线看| 欧美在线不卡视频| 26uuu精品一区二区| 香蕉影视欧美成人| eeuss鲁一区二区三区| 欧美一级黄色大片|