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

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

?? os_core.c

?? uc/osii內(nèi)核源碼
?? 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()

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
99精品视频中文字幕| 欧美精品在线一区二区| 国模娜娜一区二区三区| 亚洲午夜精品久久久久久久久| 日本一区二区免费在线观看视频| 日韩一二三区不卡| 这里是久久伊人| 日韩一区二区三区视频在线观看| 91麻豆精品国产无毒不卡在线观看| 欧美日本国产视频| 欧美喷潮久久久xxxxx| 91麻豆精品国产91久久久使用方法 | 91精品国产综合久久久久久久久久 | 日韩不卡一二三区| 日韩精品电影一区亚洲| 日韩av电影一区| 久久精品理论片| 久久99国内精品| 国产成人一区二区精品非洲| 粉嫩av一区二区三区粉嫩| 97成人超碰视| 欧美日韩一区中文字幕| 欧美日韩午夜在线视频| 欧美日韩视频不卡| 日韩视频一区在线观看| 2021国产精品久久精品| 中文无字幕一区二区三区| 一区在线观看视频| 亚洲午夜精品一区二区三区他趣| 人人精品人人爱| 国产真实精品久久二三区| 成人伦理片在线| 色婷婷一区二区三区四区| 欧美日韩国产123区| 欧美白人最猛性xxxxx69交| 久久精品日产第一区二区三区高清版| 国产精品久久久久影院亚瑟| 亚洲国产视频a| 精品伊人久久久久7777人| 成人爱爱电影网址| 欧美日韩视频在线一区二区| 精品国产乱码久久久久久闺蜜| 中文幕一区二区三区久久蜜桃| 亚洲国产wwwccc36天堂| 久久狠狠亚洲综合| 99久久99精品久久久久久| 欧美高清视频在线高清观看mv色露露十八 | 91精品在线观看入口| 久久免费看少妇高潮| 亚洲精品菠萝久久久久久久| 青青国产91久久久久久| 不卡的电影网站| 91麻豆精品国产91| 中文字幕国产一区| 琪琪久久久久日韩精品| av电影在线观看一区| 欧美一区二区观看视频| 国产精品久久三区| 久久99蜜桃精品| 在线日韩一区二区| 久久久久久久综合色一本| 亚洲国产中文字幕| 成人午夜av在线| 日韩精品一区在线| 一区二区三区中文字幕精品精品 | 日韩一区二区免费在线电影| **欧美大码日韩| 韩国成人福利片在线播放| 在线观看av一区| 国产精品乱人伦中文| 久久99久久精品| 欧美性生活大片视频| 国产精品久久久久久久蜜臀| 久久成人18免费观看| 欧美日韩三级视频| 亚洲男人的天堂av| 成人一区二区三区视频在线观看| 日韩一级片网址| 亚洲va韩国va欧美va精品| 91污在线观看| 中文字幕av一区二区三区高| 国产永久精品大片wwwapp| 欧美一区二区性放荡片| 亚洲国产成人91porn| 在线视频你懂得一区| 中文字幕亚洲精品在线观看| 国产成人在线免费观看| 亚洲精品一区二区三区福利| 欧美aⅴ一区二区三区视频| 欧美日韩小视频| 亚洲线精品一区二区三区八戒| eeuss影院一区二区三区| 国产亚洲欧美日韩在线一区| 国产一区二三区| 精品国产一区二区精华| 美国精品在线观看| 91精品国产麻豆国产自产在线| 亚洲综合一区二区精品导航| 91婷婷韩国欧美一区二区| 国产精品麻豆久久久| aaa欧美日韩| 亚洲欧洲另类国产综合| 高清日韩电视剧大全免费| 国产午夜精品一区二区三区嫩草| 精彩视频一区二区三区| 日韩精品一区二区三区老鸭窝| 免费高清不卡av| 日韩片之四级片| 精一区二区三区| 久久综合九色综合97婷婷 | 欧美一区二区免费视频| 欧美96一区二区免费视频| 日韩精品自拍偷拍| 韩国女主播成人在线观看| 国产欧美一区二区精品性| 成人av电影在线网| 综合自拍亚洲综合图不卡区| 一本大道综合伊人精品热热| 亚洲黄色性网站| 欧美日韩精品欧美日韩精品一综合| 亚洲成人动漫在线免费观看| 7777精品久久久大香线蕉| 久久国内精品自在自线400部| 2023国产精品| 99re视频这里只有精品| 亚洲综合网站在线观看| 7777精品伊人久久久大香线蕉 | 久久精品在线观看| 成人免费视频播放| 一卡二卡欧美日韩| 制服.丝袜.亚洲.中文.综合| 国产乱子伦视频一区二区三区 | 国产欧美精品一区| 色哟哟一区二区三区| 亚洲成人在线观看视频| 精品少妇一区二区三区免费观看| 国产毛片一区二区| 亚洲视频在线一区观看| 7777精品伊人久久久大香线蕉完整版| 精品一区二区免费在线观看| 国产精品每日更新在线播放网址| 91福利在线导航| 毛片一区二区三区| 国产精品久久看| 在线综合视频播放| 成人精品在线视频观看| 午夜久久久影院| 久久久久久麻豆| 欧美色爱综合网| 国产一本一道久久香蕉| 夜夜嗨av一区二区三区四季av | 国产精品乱码人人做人人爱| 欧美日韩一区二区三区视频| 狠狠色2019综合网| 一区二区三区中文字幕电影| 精品国产91久久久久久久妲己| 91免费观看国产| 精品无人码麻豆乱码1区2区| 一区二区三区精品在线| www国产成人免费观看视频 深夜成人网| 91香蕉国产在线观看软件| 久久er精品视频| 亚洲综合在线视频| 久久精品人人爽人人爽| 欧美日韩午夜精品| av不卡免费电影| 九一九一国产精品| 亚洲曰韩产成在线| 国产精品色噜噜| 欧美电影免费观看高清完整版在线 | 亚洲精品免费在线| 久久精品亚洲国产奇米99| 欧美日韩精品一区二区在线播放 | 91精品综合久久久久久| 一本色道久久综合狠狠躁的推荐| 国内成人免费视频| 日本不卡123| 亚洲一区二区三区激情| 欧美国产乱子伦| 欧美一二三四区在线| 欧美在线观看一区| av在线这里只有精品| 国产精品资源网| 日韩高清不卡一区二区| 亚洲精品国产品国语在线app| 国产日韩欧美麻豆| 精品欧美黑人一区二区三区| 欧美福利视频一区| 欧美性大战久久| 99精品一区二区| 成人aa视频在线观看| 国产精品1区2区3区在线观看| 蜜桃91丨九色丨蝌蚪91桃色| 五月婷婷综合在线| 亚洲午夜久久久久久久久电影网 | 久久久久久**毛片大全| 欧美videos大乳护士334| 欧美一区二区三区视频在线观看| 欧美性一级生活| 91福利视频网站|