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

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

?? os_core.c

?? s3c44b0x上實現的ucos+tftp
?? 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一区二区三区免费野_久草精品视频
日韩精品一区二区三区中文精品| 欧美成人精品二区三区99精品| 国产一区二区三区日韩| 日本免费在线视频不卡一不卡二| 欧美精品一二三区| 国产在线精品不卡| 国产成人免费视频一区| 91豆麻精品91久久久久久| 337p亚洲精品色噜噜| 国产精品三级视频| 久久国产免费看| 欧美做爰猛烈大尺度电影无法无天| 麻豆91精品91久久久的内涵| 欧美大度的电影原声| 欧美亚洲综合一区| 五月婷婷另类国产| 久久久久久久久久久久久夜| 国产在线国偷精品产拍免费yy | 国产精品素人视频| 中文字幕一区二区三区视频| 国产一区二区三区在线观看免费 | 午夜a成v人精品| 精品伊人久久久久7777人| 一区二区三区四区高清精品免费观看| 亚洲视频免费在线观看| 欧美一区二区三级| 中文字幕精品一区二区精品绿巨人| 一区二区在线看| 一区二区三区精品视频在线| 欧美一二区视频| 国产精品电影一区二区| 亚洲欧美日韩电影| 亚洲人吸女人奶水| 日韩av在线播放中文字幕| 国产资源在线一区| 日韩精品亚洲专区| 成人欧美一区二区三区白人 | 午夜视频一区二区| 91丝袜美女网| 欧美巨大另类极品videosbest| 亚洲人成网站精品片在线观看| 国产精品一区二区你懂的| 欧美精品色一区二区三区| 日韩午夜在线播放| 久久99精品国产| 成人欧美一区二区三区黑人麻豆| 国产日韩欧美制服另类| 久久精品男人天堂av| 一本大道久久a久久综合婷婷| 在线精品视频免费观看| 99久久婷婷国产| 欧洲国内综合视频| 日韩一级免费观看| 亚洲欧洲无码一区二区三区| 久久综合久久鬼色中文字| 国产精品99久久久久久似苏梦涵| 成人丝袜18视频在线观看| 亚洲成a人在线观看| 91福利在线免费观看| 日韩理论片在线| 亚洲国产精品精华液2区45| 日日骚欧美日韩| 91在线观看地址| 中文字幕国产一区| 黑人精品欧美一区二区蜜桃 | 日韩不卡一区二区三区 | 老司机精品视频导航| 国产精品麻豆网站| 色先锋资源久久综合| 欧美激情综合在线| 久久夜色精品国产欧美乱极品| av电影一区二区| 麻豆成人免费电影| 天天综合天天做天天综合| 一区二区欧美国产| 色综合欧美在线| 一区二区三区日韩| 色系网站成人免费| 中文字幕亚洲成人| 91视频一区二区三区| 亚洲丝袜自拍清纯另类| 欧美亚洲免费在线一区| 亚洲国产一二三| 91精品一区二区三区在线观看| 男女性色大片免费观看一区二区| 欧美一区二区视频观看视频| 久久国产精品99久久久久久老狼 | 欧美激情一区二区三区全黄 | 亚洲免费观看视频| 欧美日韩视频在线一区二区| 视频在线观看一区| 日韩午夜激情av| 国产乱对白刺激视频不卡| 日本一区二区综合亚洲| 91片在线免费观看| 天天综合网 天天综合色| 精品日韩在线观看| 99精品视频在线观看| 亚洲制服丝袜在线| 久久精品一区二区| 美女视频黄 久久| 国产欧美一区二区三区网站| 99精品欧美一区二区三区小说| 亚洲h在线观看| 久久精品亚洲精品国产欧美kt∨| 色综合网色综合| 麻豆精品在线播放| 亚洲欧美电影一区二区| 精品在线播放免费| 玉足女爽爽91| 日韩一区二区高清| 日韩电影在线一区| 欧美日韩精品一区二区| 精品亚洲porn| www亚洲一区| 欧美日韩一区国产| 国产传媒久久文化传媒| 亚洲成人先锋电影| 亚洲丝袜精品丝袜在线| 宅男噜噜噜66一区二区66| av激情综合网| 激情综合网最新| 亚洲一区二区在线免费观看视频| 久久综合国产精品| 制服丝袜亚洲色图| 色综合久久久久网| 高清免费成人av| 精品无人码麻豆乱码1区2区| 天堂成人免费av电影一区| 中文字幕一区三区| 国产三级一区二区| 2023国产精华国产精品| 欧美人妇做爰xxxⅹ性高电影| 91亚洲精品久久久蜜桃| 国产91丝袜在线18| 国产曰批免费观看久久久| 日韩成人av影视| 亚洲福中文字幕伊人影院| 亚洲欧洲日韩女同| 国产精品久久久久久久久晋中 | 亚洲国产精品人人做人人爽| 国产精品福利影院| 国产日韩欧美综合在线| 精品国产乱码久久| 久久综合色天天久久综合图片| 欧美色涩在线第一页| 91麻豆国产自产在线观看| 成人一级片在线观看| 国产精品一区二区不卡| 国产成人av一区二区| 国产91精品免费| jlzzjlzz亚洲女人18| 成人动漫一区二区在线| 天堂久久一区二区三区| 亚洲h动漫在线| 亚洲高清在线视频| 日本美女一区二区| 青青草国产成人av片免费| 青青草伊人久久| 免费高清成人在线| 国产精品一区二区你懂的| 精品一区二区三区久久久| 91精品国产综合久久蜜臀| 亚洲免费观看高清完整版在线观看| 中文字幕一区免费在线观看| 亚洲精品综合在线| 欧美日韩一区二区三区高清| 国产成人精品网址| 成人福利视频在线看| 亚洲成人av中文| 欧美视频在线一区| 国产亚洲精品福利| 色综合咪咪久久| 精品国产髙清在线看国产毛片| 亚洲丝袜另类动漫二区| 综合色中文字幕| 99久久精品国产精品久久| 欧美日韩高清一区二区三区| 欧美午夜电影网| 国产精品中文字幕欧美| 欧美性极品少妇| 色婷婷综合视频在线观看| 一区视频在线播放| 精品国产乱子伦一区| 国产91丝袜在线播放九色| 精品91自产拍在线观看一区| 亚洲黄色av一区| 国产宾馆实践打屁股91| 97久久精品人人做人人爽 | 成人午夜碰碰视频| 成人av网站在线观看免费| 91在线视频网址| 亚洲日本va午夜在线影院| 国产精品一区二区在线看| 精品少妇一区二区三区在线播放| 午夜av一区二区三区| 欧日韩精品视频| 亚洲第一福利视频在线| 欧美色综合天天久久综合精品| 亚洲欧美一区二区在线观看|