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

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

?? os_core.c

?? uCOS在PC機(至少386上)的4個范例
?? 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在线看国产| 精品一区二区三区免费毛片爱| 亚洲国产sm捆绑调教视频| 久久亚洲综合av| 日本高清视频一区二区| 国模少妇一区二区三区| 日韩精品一区二区三区在线播放| caoporn国产精品| 狠狠久久亚洲欧美| 日韩va亚洲va欧美va久久| 一区二区三区在线免费视频| 欧美高清精品3d| 欧美怡红院视频| 国产宾馆实践打屁股91| 精品一二线国产| 日本欧美一区二区三区乱码| 91精品国产综合久久久蜜臀图片| 91国偷自产一区二区三区观看| 国产精品99久久久久久似苏梦涵| 日韩电影一区二区三区| 一区二区三区日本| 日韩一区二区三区四区五区六区| 色偷偷成人一区二区三区91| 国产成人在线观看| 国产在线一区二区综合免费视频| 午夜激情综合网| 亚洲国产成人高清精品| 亚洲一区视频在线观看视频| 亚洲蜜臀av乱码久久精品| 椎名由奈av一区二区三区| 国产精品久久久久一区二区三区共| www国产亚洲精品久久麻豆| 一本久久a久久精品亚洲| 夜夜嗨av一区二区三区| 亚洲免费在线看| 亚洲黄色小视频| 一级精品视频在线观看宜春院| 樱桃国产成人精品视频| 国产精品久久久久久久久久免费看 | 久久精品亚洲麻豆av一区二区| 欧美精品免费视频| 日韩视频免费观看高清完整版 | 久久精品夜色噜噜亚洲a∨| 91成人网在线| 欧美三级视频在线播放| 在线综合亚洲欧美在线视频| 91麻豆精品国产无毒不卡在线观看| 欧美日本在线一区| 欧美一级片在线看| 久久久久亚洲综合| 亚洲同性同志一二三专区| 五月婷婷另类国产| 久久国产生活片100| 国产精一品亚洲二区在线视频| 国产一区91精品张津瑜| 91理论电影在线观看| 欧美日韩另类一区| 日韩一区二区在线免费观看| 91精品在线免费观看| 国产亚洲成年网址在线观看| 亚洲欧洲三级电影| 五月婷婷综合网| 国产91清纯白嫩初高中在线观看 | 色一情一伦一子一伦一区| 欧美日韩综合在线免费观看| 日韩小视频在线观看专区| 国产精品久久久久三级| 中文字幕乱码久久午夜不卡 | 91麻豆.com| 91精品国产aⅴ一区二区| 欧美日韩日本视频| 国产视频在线观看一区二区三区| 亚洲国产一区二区a毛片| 极品少妇一区二区三区精品视频| 成人黄色软件下载| 91精品国产91久久久久久一区二区| 色综合色综合色综合色综合色综合| 欧美精品一卡二卡| 亚洲视频小说图片| 亚洲一区二区三区免费视频| 国产999精品久久久久久| 成人黄色av网站在线| 精品国产电影一区二区| 精品精品国产高清一毛片一天堂| 国产精品三级电影| 久久99久国产精品黄毛片色诱| 日本中文字幕一区| 欧美性受xxxx| 日韩美女视频一区| 粉嫩一区二区三区性色av| 日韩欧美一区二区久久婷婷| 亚洲自拍偷拍综合| 色婷婷久久久亚洲一区二区三区| aaa亚洲精品| 国产片一区二区| 韩国av一区二区三区四区| 色噜噜狠狠成人网p站| 国产日产欧美一区二区视频| 日韩电影在线观看电影| 欧美午夜免费电影| 亚洲影院在线观看| 日本道免费精品一区二区三区| 91成人看片片| 亚洲国产精品久久久久秋霞影院 | 26uuu久久天堂性欧美| 男男gaygay亚洲| 911精品产国品一二三产区| 一区二区三区久久| 欧美在线观看视频一区二区三区| 亚洲免费三区一区二区| 9人人澡人人爽人人精品| 国产精品免费视频网站| 成人免费av在线| 成人免费一区二区三区在线观看| 国产精品一线二线三线精华| 久久夜色精品一区| 欧美日韩电影在线播放| 成人av在线看| 久久国产视频网| 亚洲国产精品影院| 亚洲人吸女人奶水| 2024国产精品视频| 这里只有精品免费| 91激情在线视频| 成人99免费视频| 韩国av一区二区| 日产国产欧美视频一区精品| 一区二区免费在线| 136国产福利精品导航| 日韩精品一区二区三区四区视频| 欧美亚洲一区二区三区四区| 成人午夜在线播放| 国产一区免费电影| 美女性感视频久久| 日韩国产在线观看| 亚洲va中文字幕| 一区二区三区在线播放| 国产精品久久毛片| 国产精品传媒视频| 欧美激情在线观看视频免费| 久久综合狠狠综合久久综合88 | 一区二区三区 在线观看视频| 国产欧美一区二区在线观看| 精品精品国产高清a毛片牛牛| 91精品国产黑色紧身裤美女| 欧美日韩黄色影视| 337p亚洲精品色噜噜噜| 欧美日韩免费观看一区三区| 欧美亚洲综合一区| 精品视频在线看| 欧美日韩一区久久| 欧美精品九九99久久| 欧美三日本三级三级在线播放| 欧美中文一区二区三区| 欧美色图免费看| 欧美一区二区三区男人的天堂| 欧美日韩夫妻久久| 日韩欧美一级特黄在线播放| 精品国产精品网麻豆系列| 国产午夜精品一区二区三区四区| 国产欧美一区二区精品忘忧草| 欧美国产日韩精品免费观看| 中文字幕一区二区视频| 一区二区免费看| 日本女人一区二区三区| 麻豆视频观看网址久久| 国产成人精品免费看| 国产成人精品三级| 色偷偷久久人人79超碰人人澡| 欧美色爱综合网| 日韩精品在线网站| 国产精品国产三级国产普通话99 | 日韩视频免费观看高清在线视频| 日韩免费看网站| 国产精品久久久久国产精品日日| 亚洲欧美视频在线观看| 天天综合天天做天天综合| 国产尤物一区二区| 92精品国产成人观看免费| 欧美浪妇xxxx高跟鞋交| 国产亚洲精品超碰| 亚洲精品成人在线| 国产综合成人久久大片91| 91免费国产在线观看| 日韩欧美亚洲国产另类| 亚洲三级小视频| 激情文学综合丁香| 欧美亚洲一区二区在线| 久久久久久久国产精品影院| 亚洲中国最大av网站| 高清在线成人网| 91精品国产91综合久久蜜臀| 亚洲欧洲综合另类| 国产一区二区看久久| 欧美精品三级在线观看|