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

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

?? os_core.c

?? UCosII 的完整源代碼
?? 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一区二区三区免费野_久草精品视频
亚洲国产精品嫩草影院| av欧美精品.com| 成人av免费网站| 91精品欧美久久久久久动漫| 国产精品久久久久久久久久免费看| 中文字幕佐山爱一区二区免费| 久久精品国产亚洲a| 色网站国产精品| 国产三级久久久| 久久激五月天综合精品| 欧美日韩亚洲高清一区二区| 亚洲国产电影在线观看| 久久狠狠亚洲综合| 欧美高清在线一区| 国产一区二区三区不卡在线观看| 91高清视频在线| 国产精品成人一区二区艾草| 国产一区二区三区在线观看免费视频 | 91豆麻精品91久久久久久| 2020国产精品自拍| 老司机精品视频一区二区三区| 欧美偷拍一区二区| 亚洲男人都懂的| 99精品热视频| 中文字幕日韩精品一区| 成人免费毛片a| 国产欧美一区二区三区网站| 麻豆精品视频在线观看免费| 欧美另类一区二区三区| 亚洲国产三级在线| 欧美日韩国产成人在线免费| 亚洲精品高清在线| 欧美午夜精品一区二区三区 | 五月天激情综合| 欧美精品日韩一区| 日日夜夜精品免费视频| 欧美日韩久久一区| 五月婷婷综合激情| 欧美日韩国产高清一区| 日本色综合中文字幕| 欧美一级理论性理论a| 男人操女人的视频在线观看欧美| 欧美肥妇毛茸茸| 麻豆国产精品一区二区三区| 日韩一区二区麻豆国产| 精品亚洲porn| 国产日韩精品一区二区三区在线| 丁香啪啪综合成人亚洲小说| 国产精品国产自产拍高清av王其| 一本色道久久综合精品竹菊| 亚洲一区二区三区激情| 日韩欧美在线123| 国产成人在线视频播放| 亚洲人成7777| 欧美精品电影在线播放| 精久久久久久久久久久| 国产精品麻豆99久久久久久| 色综合久久久久久久久| 日本不卡视频在线| 久久嫩草精品久久久精品| 91麻豆免费在线观看| 色综合久久综合中文综合网| 丝袜脚交一区二区| 国产三区在线成人av| 91成人看片片| 国产在线观看一区二区| 亚洲精品中文在线| 欧美一级在线免费| www.欧美色图| 欧美aⅴ一区二区三区视频| 国产精品美女久久久久久2018| 欧美唯美清纯偷拍| 国产91高潮流白浆在线麻豆| 亚洲国产一区视频| 日本一区二区高清| 69久久99精品久久久久婷婷| 粉嫩一区二区三区在线看| 亚洲大片在线观看| 中日韩av电影| 日韩免费一区二区| 91黄视频在线| 成人午夜在线播放| 男女男精品网站| 亚洲精品v日韩精品| 久久精品视频一区二区三区| 欧美日韩国产大片| 一本久久a久久精品亚洲| 国产在线精品免费| 日韩精品一卡二卡三卡四卡无卡| 国产精品区一区二区三区| 日韩一区二区在线观看| 91麻豆免费在线观看| 国产精品一区二区在线播放 | 日韩—二三区免费观看av| 亚洲视频在线观看一区| 国产亚洲精久久久久久| 日韩一级欧美一级| 欧美一级日韩一级| 欧美揉bbbbb揉bbbbb| 91亚洲国产成人精品一区二三| 国产高清精品网站| 国产一区欧美二区| 久久精品国产一区二区| 美女任你摸久久| 视频一区二区不卡| 亚洲乱码国产乱码精品精可以看| 国产无一区二区| 国产亚洲欧美中文| 久久久久综合网| 久久综合五月天婷婷伊人| 精品少妇一区二区| 精品国产区一区| 精品粉嫩超白一线天av| 日韩免费性生活视频播放| 日韩欧美国产一区二区三区| 亚洲精品第一国产综合野| 国产精品久久久久影院亚瑟| 国产三级欧美三级| 国产精品视频一二三| 国产精品国产三级国产aⅴ中文| 欧美国产日韩亚洲一区| 欧美国产97人人爽人人喊| 国产日韩亚洲欧美综合| 国产精品美女久久久久久| 亚洲欧美另类小说视频| 亚洲午夜私人影院| 日本亚洲视频在线| 国产一区二区精品久久| 国产jizzjizz一区二区| 99久久婷婷国产精品综合| 在线视频一区二区免费| 欧美人体做爰大胆视频| 日韩欧美国产系列| 中文字幕av一区二区三区高| 亚洲男帅同性gay1069| 日韩综合在线视频| 国产美女精品一区二区三区| 成人av小说网| 欧美日韩成人一区二区| 久久综合给合久久狠狠狠97色69| 国产欧美日韩久久| 一区二区三区波多野结衣在线观看| 亚洲国产人成综合网站| 精品一区二区三区久久久| 成人三级伦理片| 欧美日韩和欧美的一区二区| 日韩不卡在线观看日韩不卡视频| 日韩成人午夜精品| 成人av资源站| 91精品国产乱| 国产精品毛片无遮挡高清| 亚洲国产另类精品专区| 国产乱码一区二区三区| 色哟哟国产精品免费观看| 欧美xxxx老人做受| 亚洲激情一二三区| 国产精品一区二区在线看| 精品视频在线看| 久久老女人爱爱| 水野朝阳av一区二区三区| 成人黄色av电影| 精品国内片67194| 亚洲成人三级小说| 国产传媒久久文化传媒| 欧美日韩一区在线观看| 国产精品麻豆久久久| 久久国产精品99久久人人澡| 色综合久久天天| 中文无字幕一区二区三区| 日韩av一区二| 日本高清不卡视频| 国产欧美精品区一区二区三区 | 国产精品福利一区| 美女一区二区在线观看| 在线免费不卡电影| 成人欧美一区二区三区视频网页| 麻豆精品国产传媒mv男同| 欧美蜜桃一区二区三区| 亚洲日本一区二区| 波多野结衣亚洲一区| 久久精品亚洲乱码伦伦中文| 日韩av成人高清| 亚洲人妖av一区二区| 国产一区视频在线看| 欧美一区二区三级| 天天做天天摸天天爽国产一区| 色综合久久久久久久久| 亚洲欧洲无码一区二区三区| 国产河南妇女毛片精品久久久| 日韩一区二区在线观看| 日韩av电影免费观看高清完整版| 欧美体内she精高潮| 亚洲国产一区视频| 欧美日韩国产综合一区二区| 亚洲国产精品欧美一二99| 欧美日韩一区二区三区四区 | 欧美日韩你懂得| 亚洲一本大道在线| 欧美丰满少妇xxxbbb| 视频一区中文字幕国产|