亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
久久av资源站| 亚洲视频小说图片| 轻轻草成人在线| 日韩欧美电影一二三| 久久成人久久爱| 国产精品青草综合久久久久99| 国产剧情一区在线| 国产精品国产三级国产a | 日本一二三不卡| 国产精品18久久久久久久久| 亚洲国产精品国自产拍av| 成人国产精品免费| 亚洲精品成人a在线观看| 欧美日韩一区二区三区四区| 蜜臀av性久久久久av蜜臀妖精| 久久亚洲欧美国产精品乐播 | 欧美一区二区美女| 国产成人免费视| 一区二区三区不卡视频 | 精品一二三四区| 中文字幕在线不卡视频| 欧美三级在线播放| 韩国精品久久久| 亚洲人成精品久久久久久| 欧美日韩国产综合一区二区 | 久久国产综合精品| 日本一区二区视频在线| 欧美午夜一区二区| 国产91在线观看| 亚洲国产日韩一区二区| 久久久亚洲国产美女国产盗摄| 91在线看国产| 久久成人18免费观看| 亚洲女人的天堂| www激情久久| 日本久久电影网| 国产91精品一区二区| 精久久久久久久久久久| 2欧美一区二区三区在线观看视频| 国产成人激情av| 五月婷婷欧美视频| 国产日本一区二区| 欧美久久一区二区| 99v久久综合狠狠综合久久| 日韩精品一二区| 亚洲视频资源在线| 久久综合久久鬼色中文字| 色婷婷综合视频在线观看| 韩国精品久久久| 亚洲超碰97人人做人人爱| 中文字幕免费不卡| 日韩女优av电影| 日日嗨av一区二区三区四区| 亚洲bt欧美bt精品777| 爽爽淫人综合网网站| 中文字幕在线不卡一区二区三区| 26uuu亚洲| 久久久久国色av免费看影院| 久久理论电影网| 精品毛片乱码1区2区3区| 免费在线观看视频一区| 亚洲最大色网站| 中文字幕av一区 二区| 欧美一区二区在线免费观看| 欧美性猛交xxxxxxxx| jlzzjlzz亚洲日本少妇| 成人妖精视频yjsp地址| 国产精品影视网| 国产一区二区三区黄视频| 人禽交欧美网站| 日韩国产一区二| 午夜久久福利影院| 亚洲国产精品视频| 亚洲伦理在线免费看| 综合av第一页| 亚洲手机成人高清视频| 亚洲视频综合在线| 亚洲三级小视频| 一区二区三区在线影院| 亚洲一区二区在线免费看| 亚洲欧美日韩一区二区三区在线观看| 中文在线资源观看网站视频免费不卡| 久久看人人爽人人| 国产性做久久久久久| 国产三级精品三级| 国产精品视频一二三区| 国产精品国模大尺度视频| 亚洲欧洲成人自拍| 亚洲欧美经典视频| 五月婷婷另类国产| 久久99久久99精品免视看婷婷| 激情图片小说一区| 国产一区二区三区四区五区入口| 国产一区中文字幕| 成人动漫一区二区在线| 97国产一区二区| 在线观看免费视频综合| 7777精品伊人久久久大香线蕉经典版下载| 欧美日韩高清一区二区不卡| 日韩一级片网站| 国产亚洲一区字幕| 亚洲婷婷在线视频| 亚洲电影激情视频网站| 久久99国产精品久久99| 国产成人超碰人人澡人人澡| 色天天综合久久久久综合片| 欧美精品久久一区二区三区 | 成人sese在线| 在线欧美日韩国产| 精品国产1区2区3区| 国产精品乱码人人做人人爱| 亚洲国产精品久久久久秋霞影院| 免费成人你懂的| 99久久伊人精品| 欧美精品v日韩精品v韩国精品v| 欧美不卡一区二区三区| 国产精品不卡一区| 日韩高清不卡在线| 成人午夜免费视频| 制服丝袜亚洲色图| 国产精品美女久久久久av爽李琼| 亚洲一区二区偷拍精品| 国产另类ts人妖一区二区| 色狠狠桃花综合| 亚洲精品一区二区三区蜜桃下载| 亚洲色图一区二区| 老司机精品视频一区二区三区| 99精品国产一区二区三区不卡| 日韩一级免费观看| 一区二区三区在线视频观看| 国产乱对白刺激视频不卡| 欧美色欧美亚洲另类二区| 国产日韩欧美a| 美日韩黄色大片| 在线免费亚洲电影| 国产精品日韩成人| 美女精品一区二区| 精品视频免费在线| 1024成人网| 国产福利一区二区三区视频在线| 欧美日本精品一区二区三区| 日韩毛片一二三区| 在线精品观看国产| 久久麻豆一区二区| 麻豆成人在线观看| 欧美久久久久久久久久| 日韩一区中文字幕| 国产宾馆实践打屁股91| 日韩欧美成人一区| 日韩极品在线观看| 欧美人xxxx| 亚洲午夜免费视频| 99精品视频免费在线观看| 国产精品系列在线| 国产精品一级黄| 精品国产乱码久久久久久影片| 日日摸夜夜添夜夜添国产精品| 色av综合在线| 尤物av一区二区| 91在线一区二区三区| 亚洲色图欧洲色图| 色综合视频一区二区三区高清| 国产精品三级电影| 国产69精品久久777的优势| 久久久影院官网| 国产一区二区三区不卡在线观看| 日韩欧美国产麻豆| 另类中文字幕网| 精品国产3级a| 国产麻豆91精品| 中文字幕成人在线观看| 成人久久久精品乱码一区二区三区 | 亚洲国产成人91porn| 大尺度一区二区| 国产精品三级av| 色综合色狠狠天天综合色| 一区二区三区精品视频| 欧美午夜影院一区| 日本特黄久久久高潮| 日韩美女一区二区三区| 精品在线亚洲视频| 久久午夜电影网| 不卡的看片网站| 一区二区三区在线视频观看| 欧美色手机在线观看| 日韩精品一区第一页| 精品欧美久久久| 国产99久久久国产精品潘金| 中文字幕在线不卡| 在线观看免费视频综合| 乱一区二区av| 国产精品婷婷午夜在线观看| 91理论电影在线观看| 亚洲va欧美va国产va天堂影院| 欧美一级日韩一级| 国产成人午夜视频| 亚洲精品视频一区| 日韩精品中午字幕| 成人精品视频.| 天堂在线一区二区|