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

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

?? os_core.c

?? 該源碼是本人經調試通過的UCOS2操作系統在51單片機上移植好的源代碼
?? 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
#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) reentrant;
static  void  OS_InitMisc(void) reentrant;
static  void  OS_InitRdyList(void) reentrant;
static  void  OS_InitTaskIdle(void) reentrant;
static  void  OS_InitTaskStat(void) reentrant;
static  void  OS_InitTCBList(void) reentrant;

/*$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)  reentrant
{
#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) reentrant
{
    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) reentrant
{
#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)  reentrant
{
#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)  reentrant
{
#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()
*              and you MUST have created at least one task.
*
* Arguments  : none
*
* Returns    : none

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
成人开心网精品视频| 亚洲欧洲美洲综合色网| 国产日韩欧美a| 午夜精品久久久久久久99水蜜桃| 国产一区高清在线| 欧美日韩精品三区| 最近中文字幕一区二区三区| 麻豆成人91精品二区三区| 91浏览器入口在线观看| 久久精品亚洲乱码伦伦中文| 蜜桃av噜噜一区二区三区小说| 91高清在线观看| 国产精品网友自拍| 国模无码大尺度一区二区三区| 欧美日韩国产成人在线91| 亚洲视频在线一区| 成人性生交大片免费看视频在线| 日韩精品一区二区三区四区| 婷婷综合另类小说色区| 欧美在线观看视频一区二区三区| 国产精品蜜臀在线观看| 国产成人欧美日韩在线电影| 337p粉嫩大胆色噜噜噜噜亚洲 | 在线观看国产一区二区| 国产调教视频一区| 国产激情91久久精品导航| 久久久国产午夜精品| 激情五月婷婷综合网| 欧美大白屁股肥臀xxxxxx| 日韩国产欧美在线观看| 欧美精品在线一区二区| 日本亚洲视频在线| 日韩免费看网站| 国产一区二区三区电影在线观看 | 日本精品免费观看高清观看| 亚洲男人的天堂一区二区 | 国产精品久久久久久户外露出 | 国产丝袜美腿一区二区三区| 国产成人午夜精品5599| 国产三级三级三级精品8ⅰ区| 国产毛片精品视频| 国产精品免费看片| 在线亚洲免费视频| 免费日韩伦理电影| 久久久精品国产免费观看同学| 国产成人免费在线观看不卡| 亚洲欧美自拍偷拍色图| 91成人网在线| 日本午夜精品视频在线观看| 欧美videos大乳护士334| 夫妻av一区二区| 亚洲日本护士毛茸茸| 欧美日韩1234| 国产一区二区三区视频在线播放| 欧美国产精品一区二区三区| 91黄色激情网站| 日本亚洲一区二区| 国产欧美日韩在线视频| 欧美亚洲另类激情小说| 美洲天堂一区二卡三卡四卡视频| 国产亚洲综合在线| 在线免费观看一区| 精品一区二区在线播放| 国产精品久久久久一区二区三区共| 在线观看亚洲专区| 国产激情91久久精品导航| 一区二区三区欧美| 久久综合狠狠综合久久激情 | 国产精品1024| 亚洲一卡二卡三卡四卡| 精品久久国产97色综合| 91天堂素人约啪| 久久精品免费观看| 亚洲欧美日韩精品久久久久| 欧美电影精品一区二区| 在线观看免费一区| 成人少妇影院yyyy| 另类小说色综合网站| 亚洲日本青草视频在线怡红院| 日韩欧美综合在线| 欧美综合一区二区三区| 国产精品影音先锋| 青青草原综合久久大伊人精品优势 | 国产欧美一区二区精品仙草咪| 在线免费av一区| 风间由美一区二区av101| 日日摸夜夜添夜夜添亚洲女人| 国产精品久久久久久久久免费相片| 91精品国产综合久久香蕉的特点 | 国产成人精品免费看| 天天色 色综合| 亚洲人妖av一区二区| 日本一区二区视频在线观看| 日韩欧美卡一卡二| 欧美男生操女生| 欧美视频在线一区| 欧美在线啊v一区| 94-欧美-setu| 97精品国产露脸对白| 成人自拍视频在线| 国产一区久久久| 国产麻豆一精品一av一免费| 免费精品视频最新在线| 石原莉奈在线亚洲二区| 亚洲成av人片在www色猫咪| 亚洲欧洲制服丝袜| 亚洲欧美日韩国产中文在线| 亚洲视频在线一区二区| 亚洲人成7777| 一区二区三区免费看视频| 亚洲欧美国产77777| 亚洲日本va午夜在线影院| 亚洲欧美日韩一区二区| 亚洲图片你懂的| 亚洲精品久久嫩草网站秘色| 亚洲激情图片一区| 亚洲成在线观看| 蜜臀av性久久久久蜜臀aⅴ流畅 | 成人福利视频在线| 国产精品一品视频| 成人在线视频一区| www.欧美日韩| 91麻豆swag| 欧美日韩激情一区| 欧美一区日韩一区| 亚洲精品一区在线观看| 国产三级精品三级在线专区| 国产精品美女久久福利网站| 成人免费一区二区三区在线观看| 亚洲人成小说网站色在线| 又紧又大又爽精品一区二区| 亚洲午夜一区二区| 欧美aaa在线| 国产高清不卡一区| 91久久精品一区二区三区| 欧美日韩黄视频| 久久亚洲综合av| 亚洲欧美日韩在线不卡| 日日夜夜精品视频免费| 国产成人欧美日韩在线电影| 91免费看片在线观看| 欧美美女bb生活片| 久久一区二区三区国产精品| 亚洲欧洲日产国产综合网| 天堂成人免费av电影一区| 国产精品一区二区不卡| 欧美中文字幕一区| www国产成人免费观看视频 深夜成人网| 亚洲国产高清aⅴ视频| 午夜精品久久久久影视| 韩国v欧美v亚洲v日本v| 在线日韩一区二区| 久久久综合精品| 亚洲妇女屁股眼交7| 国产精品88888| 欧美群妇大交群中文字幕| 日本一区二区三级电影在线观看 | 中文字幕国产精品一区二区| 亚洲精品videosex极品| 另类人妖一区二区av| 91黄色小视频| 亚洲国产成人在线| 久久精品国产久精国产爱| 在线观看日韩精品| 国产亚洲美州欧州综合国| 亚洲风情在线资源站| 国产成人综合在线播放| 欧美卡1卡2卡| 亚洲欧美另类小说视频| 国产在线精品一区二区夜色| 91久久精品网| 国产精品久久久久久久久动漫| 久久er99精品| 91.麻豆视频| 一区二区激情小说| 成人黄色大片在线观看| 精品久久国产97色综合| 午夜精品久久久久久久99樱桃| 972aa.com艺术欧美| 国产精品三级视频| 国产在线视视频有精品| 91麻豆精品国产91久久久久久久久| 樱花草国产18久久久久| av在线一区二区| 中文字幕在线观看不卡视频| 国产精品夜夜爽| 久久综合色天天久久综合图片| 日韩成人dvd| 8v天堂国产在线一区二区| 丝袜a∨在线一区二区三区不卡| 色噜噜狠狠成人中文综合| 中文字幕一区二区三区不卡在线 | 极品销魂美女一区二区三区| 欧美电影影音先锋| 亚洲va天堂va国产va久| 欧美日精品一区视频| 亚洲综合视频网| 欧洲激情一区二区| 亚洲图片有声小说| 欧美高清精品3d|