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

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

?? os_core.c

?? UCOS操作系統的嵌入及仿真實例1, 基于ARM7
?? 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精品欧美综合在线观看最新| 99re66热这里只有精品3直播 | zzijzzij亚洲日本少妇熟睡| 国产成人精品影视| 99视频热这里只有精品免费| 色网综合在线观看| 51精品视频一区二区三区| 欧美一级一级性生活免费录像| 日韩一区二区三区高清免费看看| 精品少妇一区二区三区| 中文字幕不卡的av| 亚洲已满18点击进入久久| 三级亚洲高清视频| 国产精品一二一区| 欧美综合视频在线观看| 日韩精品一区在线观看| 欧美国产日本韩| 亚洲午夜一二三区视频| 韩国一区二区三区| 99久久精品一区| 欧美电影在哪看比较好| 国产亚洲综合av| 亚洲午夜三级在线| 国产精品自拍av| 在线区一区二视频| 精品伦理精品一区| 亚洲视频在线一区二区| 精品亚洲成a人| 色菇凉天天综合网| 国产亚洲精品资源在线26u| 亚洲精品综合在线| 国内精品伊人久久久久影院对白| av色综合久久天堂av综合| 在线成人免费观看| 亚洲色图丝袜美腿| 狠狠色丁香婷婷综合| 欧美日韩视频在线一区二区| 欧美精品一区二区三区很污很色的| 最新日韩在线视频| 激情欧美日韩一区二区| 欧美日本一区二区| 日韩理论片在线| 国产成人精品亚洲777人妖| 欧美视频中文一区二区三区在线观看| 国产三级精品三级| 美国av一区二区| 欧美日韩国产精品自在自线| 国产精品久久久久久久岛一牛影视| 秋霞国产午夜精品免费视频| 日本精品视频一区二区| 国产女人aaa级久久久级| 久久97超碰国产精品超碰| 欧美日韩国产高清一区二区| 18欧美亚洲精品| 成人avav影音| 国产精品麻豆久久久| 国产一区在线看| 精品国产免费一区二区三区香蕉| 天天色天天爱天天射综合| 欧美伊人精品成人久久综合97| 国产精品久久久久久久午夜片| 国产精品1区2区3区在线观看| 久久综合色播五月| 青青草91视频| 欧美大胆人体bbbb| 国产在线精品一区二区夜色| 精品国产电影一区二区 | 欧美国产日产图区| 成人精品免费看| 国产精品乱人伦中文| 成人精品视频一区二区三区尤物| 国产精品色噜噜| 不卡av在线网| 亚洲综合免费观看高清在线观看| 色综合亚洲欧洲| 亚洲国产cao| 日韩亚洲欧美一区| 久久激五月天综合精品| 久久久久久一二三区| 成人av免费网站| 亚洲福利视频三区| 日韩欧美一区中文| 国产不卡视频一区二区三区| 日韩码欧中文字| 欧美日韩免费视频| 狠狠v欧美v日韩v亚洲ⅴ| 亚洲国产电影在线观看| 色婷婷av一区二区三区软件| 视频一区在线播放| 久久久精品国产免大香伊| 不卡av免费在线观看| 亚洲成av人片在线观看无码| 欧美不卡在线视频| 粉嫩蜜臀av国产精品网站| 亚洲视频小说图片| 日韩欧美一级特黄在线播放| 懂色av中文一区二区三区| 亚洲美女精品一区| 日韩欧美的一区二区| 成人午夜电影网站| 亚洲第一久久影院| 久久婷婷久久一区二区三区| 欧美性生活久久| 国产又粗又猛又爽又黄91精品| 亚洲精品视频在线观看免费| 日韩精品一区二区三区在线 | 在线播放国产精品二区一二区四区 | 美女爽到高潮91| 国产精品第13页| 精品久久一区二区| 在线欧美一区二区| 国产91精品免费| 蜜芽一区二区三区| 亚洲精品日产精品乱码不卡| 久久久久国产精品麻豆ai换脸| 在线看国产一区二区| 国产高清久久久| 日本中文字幕一区| 亚洲一区二区视频在线| 精品国产在天天线2019| 欧美亚洲综合另类| 成人高清伦理免费影院在线观看| 久久97超碰国产精品超碰| 亚洲自拍偷拍综合| 中文字幕亚洲区| 国产亚洲欧洲997久久综合 | 国产在线播放一区| 日韩中文字幕一区二区三区| 亚洲蜜臀av乱码久久精品| 国产欧美一区二区精品忘忧草| 欧美一级xxx| 91精品国产色综合久久不卡蜜臀| 日本道免费精品一区二区三区| 成人aaaa免费全部观看| 懂色av一区二区三区蜜臀| 国产在线精品视频| 精品一区二区三区在线视频| 蜜臀精品一区二区三区在线观看| 亚洲国产成人av网| 婷婷开心激情综合| 香蕉av福利精品导航| 亚洲无人区一区| 亚洲va国产va欧美va观看| 亚洲风情在线资源站| 午夜电影网一区| 午夜精品久久久久久久99樱桃| 亚洲第一搞黄网站| 天堂成人国产精品一区| 午夜伊人狠狠久久| 免费日本视频一区| 韩日av一区二区| 丰满白嫩尤物一区二区| 99精品久久99久久久久| 色琪琪一区二区三区亚洲区| 欧美最猛性xxxxx直播| 欧美日韩激情一区二区三区| 欧美一二三区在线| 久久久三级国产网站| 国产午夜亚洲精品理论片色戒| 国产精品久久久久久久久久免费看 | 精品视频一区三区九区| 欧美日本国产一区| 精品国产三级a在线观看| 国产精品天天看| 亚洲午夜久久久久久久久久久| 亚洲444eee在线观看| 激情五月播播久久久精品| 成人精品在线视频观看| 欧美综合在线视频| 精品国产乱子伦一区| 国产精品成人一区二区艾草| 亚洲一区二区中文在线| 久久国产尿小便嘘嘘| 不卡av免费在线观看| 在线播放中文字幕一区| 中文av一区二区| 亚洲成av人片一区二区三区| 国产在线精品一区在线观看麻豆| 99re视频精品| 精品福利av导航| 一区二区三区中文免费| 精品在线视频一区| 91蜜桃免费观看视频| 亚洲精品在线观看网站| 亚洲精品伦理在线| 国产美女主播视频一区| 欧美精品1区2区3区| 综合欧美亚洲日本| 国产一区视频网站| 在线不卡欧美精品一区二区三区|