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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲蟲下載站

?? os_core.c

?? 該源碼是本人經(jīng)調(diào)試通過的UCOS2操作系統(tǒng)在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一区二区三区免费野_久草精品视频
91免费版在线| 麻豆精品视频在线观看| 欧美一三区三区四区免费在线看 | 美女www一区二区| 国产精品毛片大码女人| 日韩一区二区免费高清| 91香蕉视频在线| 国产精品一二三四区| 天涯成人国产亚洲精品一区av| 中文字幕高清不卡| 日韩精品一区二区在线观看| 欧美性生活影院| 国产成人精品一区二| 天堂蜜桃一区二区三区| 亚洲乱码国产乱码精品精的特点 | 久久久久久夜精品精品免费| 69堂亚洲精品首页| 一本久久综合亚洲鲁鲁五月天| 国产黄色成人av| 久久精品av麻豆的观看方式| 一区二区三区免费| 国产精品美女一区二区三区| www久久精品| 日韩精品最新网址| 91精品国产综合久久国产大片| 色香蕉久久蜜桃| 99riav一区二区三区| 国产精品1024| 粉嫩久久99精品久久久久久夜 | 久久99精品国产| 奇米精品一区二区三区在线观看| 亚洲国产精品久久不卡毛片| 亚洲日本一区二区三区| 国产精品护士白丝一区av| 国产三级欧美三级| 国产亚洲欧美日韩在线一区| 欧美电视剧免费全集观看| 欧美一区二区三区小说| 91精品欧美久久久久久动漫 | 亚洲电影激情视频网站| 亚洲无人区一区| 亚洲宅男天堂在线观看无病毒 | 精品一区精品二区高清| 老司机午夜精品| 激情成人午夜视频| 国内精品免费**视频| 国产麻豆精品theporn| 狠狠色狠狠色合久久伊人| 狠狠色综合播放一区二区| 国产美女一区二区| 成人中文字幕在线| av一区二区久久| 欧美在线视频不卡| 欧美日韩国产另类一区| 日韩欧美国产小视频| 26uuu国产在线精品一区二区| 精品国产凹凸成av人网站| 国产人久久人人人人爽| 中文字幕在线观看一区二区| 亚洲精品国产高清久久伦理二区| 亚洲一区二区视频| 裸体一区二区三区| 国产成人自拍网| 91美女在线视频| 制服丝袜亚洲色图| 亚洲国产精品av| 亚洲亚洲精品在线观看| 热久久国产精品| 国产a级毛片一区| 97精品国产露脸对白| 欧美日本韩国一区| 久久久一区二区三区| 亚洲欧美日韩中文字幕一区二区三区| 亚洲国产精品欧美一二99| 免费成人美女在线观看.| 国v精品久久久网| 欧美天天综合网| 久久这里只有精品6| 综合av第一页| 老司机免费视频一区二区三区| 成人免费av在线| 亚洲精品国产成人久久av盗摄| av成人老司机| 高清视频一区二区| 欧美无砖砖区免费| 久久精品欧美一区二区三区不卡 | 国产精品久久久一本精品| 亚洲综合成人网| 狠狠色丁香婷综合久久| 欧美影院精品一区| 国产精品五月天| 日韩在线播放一区二区| 成人国产精品免费观看| 日韩欧美区一区二| 亚洲黄色片在线观看| 国产精品正在播放| 91精品免费在线| 一区二区三区美女视频| 国产一区二区福利视频| 欧美日韩三级在线| 国产精品不卡在线| 国产在线不卡视频| 欧美精品18+| 亚洲在线视频一区| 99国产精品久| 国产欧美日本一区二区三区| 喷水一区二区三区| 色综合久久久网| 日本一区二区久久| 激情国产一区二区| 欧美一级夜夜爽| 五月婷婷另类国产| 在线观看日韩国产| 亚洲欧美成人一区二区三区| 国产91精品入口| 久久久久久久久久久99999| 日韩av一级电影| 欧美日韩欧美一区二区| 亚洲老司机在线| bt7086福利一区国产| 久久久精品免费观看| 精品夜夜嗨av一区二区三区| 7777精品伊人久久久大香线蕉超级流畅| 亚洲欧美乱综合| av在线综合网| 中文字幕日韩av资源站| av在线播放成人| 亚洲欧美日韩国产手机在线 | 国产一区二区主播在线| 日韩一区二区三区四区| 日韩精品电影在线| 日韩三级电影网址| 日本一道高清亚洲日美韩| 在线播放中文字幕一区| 天堂av在线一区| 91精品国产综合久久香蕉麻豆| 日本中文字幕一区二区视频| 4438x成人网最大色成网站| 日韩和欧美的一区| 91精品福利在线一区二区三区| 麻豆精品国产传媒mv男同| 91精品国产综合久久精品| 久久精品久久综合| 亚洲精品在线观看视频| 国产精品一二三四| 亚洲视频精选在线| 欧美中文一区二区三区| 日韩制服丝袜av| 欧美v亚洲v综合ⅴ国产v| 国产精品一区二区黑丝| 国产精品久久久一本精品| 色激情天天射综合网| 亚洲成人第一页| 欧美一区二区久久| 国产风韵犹存在线视精品| 中文字幕欧美一| 欧美日韩精品一区二区三区四区| 日韩黄色一级片| 国产香蕉久久精品综合网| eeuss影院一区二区三区| 一区二区三国产精华液| 欧美一级片在线观看| 国产精品一区久久久久| 亚洲欧美偷拍卡通变态| 欧美一区二区三区视频| 福利电影一区二区| 国产精品一级片| 亚洲欧美另类久久久精品| 欧美精品一二三| 国产999精品久久久久久| 亚洲激情图片一区| 欧美成人三级在线| av在线不卡网| 美国三级日本三级久久99| 中文一区二区在线观看| 欧美日韩一区高清| 国产精品伊人色| 亚洲一区二区三区在线| 久久久综合视频| 欧美顶级少妇做爰| 波多野结衣中文字幕一区| 日韩av在线发布| 亚洲欧美精品午睡沙发| 精品成人在线观看| 欧美性大战xxxxx久久久| 国产一区二区剧情av在线| 亚洲一二三四区不卡| 久久精品日韩一区二区三区| 91行情网站电视在线观看高清版| 精品一区二区三区视频在线观看| 一区二区三区久久| 国产欧美精品一区aⅴ影院 | 韩国av一区二区三区| 亚洲综合一区二区三区| 久久久综合激的五月天| 制服.丝袜.亚洲.另类.中文| 成人在线一区二区三区| 久久99深爱久久99精品| 亚洲夂夂婷婷色拍ww47| 国产精品动漫网站|