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

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

?? os_core.c

?? ucos2的代碼
?? 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) reentrant
{
#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) reentrant
{
    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) reentrant
{

    
    
    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) reentrant
{

    
    
    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) reentrant
{

    
    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()
*              and you MUST have created at least one task.
*

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
欧美国产一区二区| 91麻豆swag| 欧美日韩一级黄| 亚洲国产欧美在线| 欧美日韩一区二区欧美激情| 麻豆国产欧美一区二区三区| 91麻豆精品91久久久久同性| 亚洲理论在线观看| 欧美视频日韩视频| 日本不卡高清视频| 欧美精品一区二区三区高清aⅴ | 欧美日韩免费观看一区二区三区| 国产日韩欧美麻豆| 成人av在线一区二区三区| 国产精品区一区二区三区| 99久久精品情趣| 亚洲国产综合在线| 国产欧美综合在线| 精品国产乱码久久| 8x8x8国产精品| 91浏览器在线视频| 成人免费精品视频| 亚洲一区二区av在线| 欧美精品18+| 极品美女销魂一区二区三区免费 | 久久蜜桃av一区二区天堂| 国产成人av一区二区三区在线 | 2020国产精品久久精品美国| 99在线精品一区二区三区| 亚洲午夜一二三区视频| 国产精品污www在线观看| 欧美不卡一区二区三区| 成人av电影免费观看| 九九九精品视频| 日韩精品高清不卡| 中文字幕巨乱亚洲| 国产日韩精品一区二区浪潮av| 欧美一二三区在线观看| 不卡一二三区首页| 国产91精品免费| 亚洲成人一区二区| 久久久国产综合精品女国产盗摄| 日韩欧美国产不卡| 91在线观看地址| 不卡av在线网| 99精品国产91久久久久久| 成人美女在线观看| 成人午夜电影小说| 北岛玲一区二区三区四区| 高清成人免费视频| 成人一区二区视频| av午夜一区麻豆| 99re这里都是精品| 在线中文字幕一区二区| 精品一区二区在线播放| 久久国产精品色| 亚洲国产精品一区二区尤物区| 亚洲精品视频一区二区| 亚洲亚洲人成综合网络| 亚洲国产你懂的| 秋霞午夜av一区二区三区| 九九精品视频在线看| 国产激情一区二区三区四区| 粉嫩av一区二区三区| 成人高清视频在线| 在线免费观看日本一区| 不卡的av在线播放| 欧美艳星brazzers| 欧美一区二区三区四区久久| 欧美性高清videossexo| 精品视频资源站| 日韩欧美久久一区| 国产精品日韩成人| 亚洲国产乱码最新视频| 亚洲欧美另类图片小说| 国产精品二三区| 久久网这里都是精品| 国产精品丝袜久久久久久app| 亚洲欧美日本在线| 奇米四色…亚洲| 高清视频一区二区| 欧美午夜精品久久久久久孕妇 | 欧美三级欧美一级| 精品日产卡一卡二卡麻豆| 国产精品素人视频| 同产精品九九九| 日韩福利视频网| 日本视频免费一区| 成人黄色av网站在线| 欧美日免费三级在线| 久久免费电影网| 亚洲1区2区3区视频| 麻豆精品视频在线观看免费 | 欧美日产在线观看| 日本一区免费视频| 亚洲国产欧美另类丝袜| 国产精品一区二区免费不卡 | 日韩黄色免费网站| 国产精品一区二区男女羞羞无遮挡 | 国产精品视频线看| 成人精品视频一区| 欧美精品日韩综合在线| 久久久不卡网国产精品一区| 亚洲美女少妇撒尿| 国产精品一区二区免费不卡| 欧美色视频在线| 中文字幕+乱码+中文字幕一区| 亚洲国产色一区| 成人av网站免费| 精品久久久久一区| 午夜成人在线视频| 99re66热这里只有精品3直播 | 欧美影院一区二区三区| 日本不卡视频在线| 在线观看av一区二区| 亚洲欧洲在线观看av| 99久久99久久久精品齐齐| 91精品国产一区二区人妖| 亚洲同性同志一二三专区| 一区二区三区色| 日本伊人精品一区二区三区观看方式| av在线一区二区三区| 久久免费精品国产久精品久久久久| 性感美女久久精品| 风间由美性色一区二区三区| 欧美一区二区精品| 日韩激情视频网站| 欧美色网一区二区| 一区二区三区在线播放| jlzzjlzz亚洲日本少妇| 久久久久久亚洲综合影院红桃| 日韩激情中文字幕| 欧美日韩国产一区| 夜夜亚洲天天久久| 在线观看视频一区二区| 亚洲欧美影音先锋| 成人国产精品免费观看| 国产精品你懂的在线| 国产精品一区一区| 国产欧美日韩精品一区| 国产一区二区看久久| 懂色av一区二区三区免费看| 26uuu精品一区二区在线观看| 青草av.久久免费一区| 欧美一区日韩一区| 日韩精品成人一区二区三区| 欧美日韩成人综合| 奇米777欧美一区二区| 欧美一区二区成人| 免费观看一级欧美片| 日韩午夜电影av| 激情综合五月婷婷| 亚洲精品一区二区三区福利| 国产成人午夜片在线观看高清观看| 久久午夜老司机| 99久久免费视频.com| 亚洲欧美自拍偷拍| 欧美色综合网站| 美女视频免费一区| 久久久青草青青国产亚洲免观| 粉嫩高潮美女一区二区三区| 国产农村妇女毛片精品久久麻豆| 成人app软件下载大全免费| 国产精品久久久久久福利一牛影视| 99精品久久久久久| 天天综合网 天天综合色| 欧美一卡二卡三卡| 国产精品一区三区| 日韩电影免费在线看| 日韩欧美视频在线| 国产自产高清不卡| 欧美在线观看禁18| 美洲天堂一区二卡三卡四卡视频| 欧美va在线播放| av影院午夜一区| 日韩有码一区二区三区| 久久午夜羞羞影院免费观看| 91网址在线看| 男人的天堂亚洲一区| 欧美极品aⅴ影院| 亚洲成va人在线观看| 亚洲免费电影在线| 一本到高清视频免费精品| 国产精品天干天干在观线| 色综合色综合色综合色综合色综合 | 国产精品丝袜在线| 欧美狂野另类xxxxoooo| 国产一区在线不卡| 亚洲午夜电影在线观看| 欧美videos中文字幕| 色诱视频网站一区| 国产一区二区三区香蕉| 一区二区欧美国产| 久久综合色播五月| 欧美性大战久久久| 成人免费视频caoporn| 偷偷要91色婷婷| 亚洲欧洲日韩在线| 欧美xxxxx牲另类人与| 色综合视频在线观看|