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

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

?? os_task.c

?? ucos-ii+lpc123x proteus emulate
?? C
?? 第 1 頁 / 共 3 頁
字號:
/*
*********************************************************************************************************
*                                                uC/OS-II
*                                          The Real-Time Kernel
*                                            TASK MANAGEMENT
*
*                          (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
*                                           All Rights Reserved
*
* File : OS_TASK.C
* By   : Jean J. Labrosse
*********************************************************************************************************
*/

#ifndef  OS_MASTER_FILE
#include "includes.h"
#endif

/*
*********************************************************************************************************
*                                        CHANGE PRIORITY OF A TASK
*
* Description: This function allows you to change the priority of a task dynamically.  Note that the new
*              priority MUST be available.
*
* Arguments  : oldp     is the old priority
*
*              newp     is the new priority
*
* Returns    : OS_NO_ERR        is the call was successful
*              OS_PRIO_INVALID  if the priority you specify is higher that the maximum allowed
*                               (i.e. >= OS_LOWEST_PRIO)
*              OS_PRIO_EXIST    if the new priority already exist.
*              OS_PRIO_ERR      there is no task with the specified OLD priority (i.e. the OLD task does
*                               not exist.
*********************************************************************************************************
*/

#if OS_TASK_CHANGE_PRIO_EN > 0
INT8U  OSTaskChangePrio (INT8U oldprio, INT8U newprio)
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR    cpu_sr;
#endif

#if OS_EVENT_EN > 0
    OS_EVENT    *pevent;
#endif

    OS_TCB      *ptcb;
    INT8U        x;
    INT8U        y;
    INT8U        bitx;
    INT8U        bity;



#if OS_ARG_CHK_EN > 0
    if ((oldprio >= OS_LOWEST_PRIO && oldprio != OS_PRIO_SELF)  ||
         newprio >= OS_LOWEST_PRIO) {
        return (OS_PRIO_INVALID);
    }
#endif
    OS_ENTER_CRITICAL();
    if (OSTCBPrioTbl[newprio] != (OS_TCB *)0) {                 /* New priority must not already exist */
        OS_EXIT_CRITICAL();
        return (OS_PRIO_EXIST);
    } else {
        OSTCBPrioTbl[newprio] = (OS_TCB *)1;                    /* Reserve the entry to prevent others */
        OS_EXIT_CRITICAL();
        y    = newprio >> 3;                                    /* Precompute to reduce INT. latency   */
        bity = OSMapTbl[y];
        x    = newprio & 0x07;
        bitx = OSMapTbl[x];
        OS_ENTER_CRITICAL();
        if (oldprio == OS_PRIO_SELF) {                          /* See if changing self                */
            oldprio = OSTCBCur->OSTCBPrio;                      /* Yes, get priority                   */
        }
        ptcb = OSTCBPrioTbl[oldprio];
        if (ptcb != (OS_TCB *)0) {                              /* Task to change must exist           */
            OSTCBPrioTbl[oldprio] = (OS_TCB *)0;                /* Remove TCB from old priority        */
            if ((OSRdyTbl[ptcb->OSTCBY] & ptcb->OSTCBBitX) != 0x00) {  /* If task is ready make it not */
                if ((OSRdyTbl[ptcb->OSTCBY] &= ~ptcb->OSTCBBitX) == 0x00) {
                    OSRdyGrp &= ~ptcb->OSTCBBitY;
                }
                OSRdyGrp    |= bity;                            /* Make new priority ready to run      */
                OSRdyTbl[y] |= bitx;
#if OS_EVENT_EN > 0
            } else {
                pevent = ptcb->OSTCBEventPtr;
                if (pevent != (OS_EVENT *)0) {                  /* Remove from event wait list  */
                    if ((pevent->OSEventTbl[ptcb->OSTCBY] &= ~ptcb->OSTCBBitX) == 0) {
                        pevent->OSEventGrp &= ~ptcb->OSTCBBitY;
                    }
                    pevent->OSEventGrp    |= bity;              /* Add new priority to wait list       */
                    pevent->OSEventTbl[y] |= bitx;
                }
#endif
            }
            OSTCBPrioTbl[newprio] = ptcb;                       /* Place pointer to TCB @ new priority */
            ptcb->OSTCBPrio       = newprio;                    /* Set new task priority               */
            ptcb->OSTCBY          = y;
            ptcb->OSTCBX          = x;
            ptcb->OSTCBBitY       = bity;
            ptcb->OSTCBBitX       = bitx;
            OS_EXIT_CRITICAL();
            OS_Sched();                                         /* Run highest priority task ready     */
            return (OS_NO_ERR);
        } else {
            OSTCBPrioTbl[newprio] = (OS_TCB *)0;                /* Release the reserved prio.          */
            OS_EXIT_CRITICAL();
            return (OS_PRIO_ERR);                               /* Task to change didn't exist         */
        }
    }
}
#endif
/*$PAGE*/
/*
*********************************************************************************************************
*                                            CREATE A TASK
*
* Description: This function is used to have uC/OS-II manage the execution of a task.  Tasks can either
*              be created prior to the start of multitasking or by a running task.  A task cannot be
*              created by an ISR.
*
* Arguments  : task     is a pointer to the task's code
*
*              pdata    is a pointer to an optional data area which can be used to pass parameters to
*                       the task when the task first executes.  Where the task is concerned it thinks
*                       it was invoked and passed the argument 'pdata' as follows:
*
*                           void Task (void *pdata)
*                           {
*                               for (;;) {
*                                   Task code;
*                               }
*                           }
*
*              ptos     is a pointer to the task's top of stack.  If the configuration constant
*                       OS_STK_GROWTH is set to 1, the stack is assumed to grow downward (i.e. from high
*                       memory to low memory).  'pstk' will thus point to the highest (valid) memory
*                       location of the stack.  If OS_STK_GROWTH is set to 0, 'pstk' will point to the
*                       lowest memory location of the stack and the stack will grow with increasing
*                       memory locations.
*
*              prio     is the task's priority.  A unique priority MUST be assigned to each task and the
*                       lower the number, the higher the priority.
*
* Returns    : OS_NO_ERR        if the function was successful.
*              OS_PRIO_EXIT     if the task priority already exist
*                               (each task MUST have a unique priority).
*              OS_PRIO_INVALID  if the priority you specify is higher that the maximum allowed
*                               (i.e. >= OS_LOWEST_PRIO)
*********************************************************************************************************
*/

#if OS_TASK_CREATE_EN > 0
INT8U  OSTaskCreate (void (*task)(void *pd), void *pdata, OS_STK *ptos, INT8U prio)
{
#if OS_CRITICAL_METHOD == 3                  /* Allocate storage for CPU status register               */
    OS_CPU_SR  cpu_sr;
#endif
    OS_STK    *psp;
    INT8U      err;


#if OS_ARG_CHK_EN > 0
    if (prio > OS_LOWEST_PRIO) {             /* Make sure priority is within allowable range           */
        return (OS_PRIO_INVALID);
    }
#endif
    OS_ENTER_CRITICAL();
    if (OSTCBPrioTbl[prio] == (OS_TCB *)0) { /* Make sure task doesn't already exist at this priority  */
        OSTCBPrioTbl[prio] = (OS_TCB *)1;    /* Reserve the priority to prevent others from doing ...  */
                                             /* ... the same thing until task is created.              */
        OS_EXIT_CRITICAL();
        psp = (OS_STK *)OSTaskStkInit(task, pdata, ptos, 0);    /* Initialize the task's stack         */
        err = OS_TCBInit(prio, psp, (OS_STK *)0, 0, 0, (void *)0, 0);
        if (err == OS_NO_ERR) {
            OS_ENTER_CRITICAL();
            OSTaskCtr++;                                        /* Increment the #tasks counter        */
            OS_EXIT_CRITICAL();
            if (OSRunning == TRUE) {         /* Find highest priority task if multitasking has started */
                OS_Sched();
            }
        } else {
            OS_ENTER_CRITICAL();
            OSTCBPrioTbl[prio] = (OS_TCB *)0;/* Make this priority available to others                 */
            OS_EXIT_CRITICAL();
        }
        return (err);
    }
    OS_EXIT_CRITICAL();
    return (OS_PRIO_EXIST);
}
#endif
/*$PAGE*/
/*
*********************************************************************************************************
*                                     CREATE A TASK (Extended Version)
*
* Description: This function is used to have uC/OS-II manage the execution of a task.  Tasks can either
*              be created prior to the start of multitasking or by a running task.  A task cannot be
*              created by an ISR.  This function is similar to OSTaskCreate() except that it allows
*              additional information about a task to be specified.
*
* Arguments  : task     is a pointer to the task's code
*
*              pdata    is a pointer to an optional data area which can be used to pass parameters to
*                       the task when the task first executes.  Where the task is concerned it thinks
*                       it was invoked and passed the argument 'pdata' as follows:
*
*                           void Task (void *pdata)
*                           {
*                               for (;;) {
*                                   Task code;
*                               }
*                           }
*
*              ptos     is a pointer to the task's top of stack.  If the configuration constant
*                       OS_STK_GROWTH is set to 1, the stack is assumed to grow downward (i.e. from high
*                       memory to low memory).  'pstk' will thus point to the highest (valid) memory
*                       location of the stack.  If OS_STK_GROWTH is set to 0, 'pstk' will point to the
*                       lowest memory location of the stack and the stack will grow with increasing
*                       memory locations.  'pstk' MUST point to a valid 'free' data item.
*
*              prio     is the task's priority.  A unique priority MUST be assigned to each task and the
*                       lower the number, the higher the priority.
*
*              id       is the task's ID (0..65535)
*
*              pbos     is a pointer to the task's bottom of stack.  If the configuration constant
*                       OS_STK_GROWTH is set to 1, the stack is assumed to grow downward (i.e. from high
*                       memory to low memory).  'pbos' will thus point to the LOWEST (valid) memory
*                       location of the stack.  If OS_STK_GROWTH is set to 0, 'pbos' will point to the
*                       HIGHEST memory location of the stack and the stack will grow with increasing
*                       memory locations.  'pbos' MUST point to a valid 'free' data item.
*
*              stk_size is the size of the stack in number of elements.  If OS_STK is set to INT8U,
*                       'stk_size' corresponds to the number of bytes available.  If OS_STK is set to
*                       INT16U, 'stk_size' contains the number of 16-bit entries available.  Finally, if
*                       OS_STK is set to INT32U, 'stk_size' contains the number of 32-bit entries
*                       available on the stack.
*
*              pext     is a pointer to a user supplied memory location which is used as a TCB extension.
*                       For example, this user memory can hold the contents of floating-point registers
*                       during a context switch, the time each task takes to execute, the number of times
*                       the task has been switched-in, etc.
*
*              opt      contains additional information (or options) about the behavior of the task.  The
*                       LOWER 8-bits are reserved by uC/OS-II while the upper 8 bits can be application
*                       specific.  See OS_TASK_OPT_??? in uCOS-II.H.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产在线不卡一卡二卡三卡四卡| 欧美亚洲综合在线| 欧美午夜精品一区二区三区| 中文字幕成人在线观看| 天天做天天摸天天爽国产一区 | 中文字幕在线观看不卡| 五月综合激情婷婷六月色窝| 99热在这里有精品免费| 欧美刺激脚交jootjob| 亚洲亚洲精品在线观看| 成人av午夜电影| 久久久精品免费网站| 天堂在线一区二区| 色先锋资源久久综合| 国产婷婷色一区二区三区四区| 三级欧美在线一区| 精品视频一区二区三区免费| 国产精品久久久久一区二区三区共 | 国产精品毛片久久久久久久| 日av在线不卡| 7777精品伊人久久久大香线蕉的 | 欧美国产综合一区二区| 麻豆91精品视频| 欧美日韩国产精品成人| 亚洲一区二区在线播放相泽 | 成人高清av在线| 久久精品一区二区三区av| 久久国产精品72免费观看| 日韩欧美国产三级电影视频| 丝袜美腿亚洲综合| 在线播放中文字幕一区| 午夜在线电影亚洲一区| 3d动漫精品啪啪一区二区竹菊| 亚洲h在线观看| 欧美丰满少妇xxxbbb| 日产国产欧美视频一区精品| 欧美一区二区日韩一区二区| 免播放器亚洲一区| 久久久久久日产精品| 成人在线视频首页| 亚洲男同性视频| 欧美性淫爽ww久久久久无| 亚洲福利视频三区| 日韩一级黄色大片| 国产一区999| 国产精品传媒入口麻豆| 日本久久一区二区三区| 午夜精品一区二区三区免费视频 | 色视频一区二区| 亚洲国产一区二区视频| 欧美一级精品在线| 国内精品国产成人国产三级粉色| 国产日韩三级在线| 色综合久久99| 日本中文字幕一区二区视频| xnxx国产精品| 91色|porny| 免费在线观看成人| 国产精品美女www爽爽爽| 欧美视频一区在线| 韩国av一区二区三区在线观看| 自拍视频在线观看一区二区| 欧美一区二区三区在线看| 国产99久久久国产精品免费看| 亚洲精品水蜜桃| 欧美精品一区二区三区一线天视频| 成人动漫视频在线| 奇米影视7777精品一区二区| 国产精品久久久久久久久免费樱桃| 欧美三片在线视频观看| 国产成人精品一区二区三区四区 | 成人一级视频在线观看| 亚洲电影一区二区| 国产亚洲一区二区三区在线观看 | 欧美亚日韩国产aⅴ精品中极品| 久久丁香综合五月国产三级网站| 久久精品欧美一区二区三区麻豆| 日本精品免费观看高清观看| 国产一区视频在线看| 一区二区在线免费观看| 国产日韩av一区二区| 精品视频999| av资源站一区| 国产一区免费电影| 香港成人在线视频| 亚洲激情图片一区| 精品日韩在线观看| 在线播放中文字幕一区| 波波电影院一区二区三区| 青青草一区二区三区| 亚洲黄色免费网站| 欧美激情一二三区| 2021中文字幕一区亚洲| 日韩一区二区三区四区五区六区| 日本黄色一区二区| 99精品桃花视频在线观看| 国产乱码精品一区二区三区五月婷| 亚洲一区成人在线| 亚洲精品乱码久久久久久日本蜜臀| 国产亚洲欧洲997久久综合| 欧美tickling挠脚心丨vk| 在线电影欧美成精品| 91九色最新地址| 99精品视频中文字幕| 99精品热视频| 99国产精品视频免费观看| 成人app网站| av电影在线观看不卡| 不卡高清视频专区| 国产成人综合亚洲网站| 国产一区在线观看视频| 国产在线看一区| 国内精品伊人久久久久av一坑| 久久精品99国产精品日本| 狂野欧美性猛交blacked| 日本麻豆一区二区三区视频| 麻豆91免费观看| 韩日精品视频一区| 国产经典欧美精品| 成人亚洲精品久久久久软件| 成人av高清在线| eeuss鲁片一区二区三区在线观看 eeuss鲁片一区二区三区在线看 | 国产精品综合网| 成人高清视频免费观看| 91在线看国产| 欧洲av在线精品| 欧美一区二区三区在线观看 | 欧美xxxxxxxx| 久久综合久久综合亚洲| 国产精品污污网站在线观看| 中文字幕一区不卡| 亚洲成av人**亚洲成av**| 日韩1区2区3区| 国产91富婆露脸刺激对白| av亚洲精华国产精华| 欧美亚洲国产一区二区三区va| 欧美一级爆毛片| 欧美国产日韩精品免费观看| 亚洲婷婷综合久久一本伊一区| 亚洲一区二区3| 久久国产人妖系列| www..com久久爱| 欧美一区二区性放荡片| 国产精品沙发午睡系列990531| 亚洲视频一区在线| 久久精品国产**网站演员| 波波电影院一区二区三区| 欧美日韩性生活| 国产视频一区二区三区在线观看 | 欧美亚洲日本国产| 欧美不卡123| 一区二区三区中文在线| 韩日欧美一区二区三区| 色偷偷一区二区三区| 亚洲精品在线三区| 国产精品第五页| 精品一区二区三区香蕉蜜桃| 91在线观看地址| 精品国产91久久久久久久妲己 | 亚洲国产精品国自产拍av| 亚洲一级片在线观看| 国产精品一区不卡| 在线综合+亚洲+欧美中文字幕| 国产精品色哟哟| 精品一区二区三区在线观看| 欧美午夜在线观看| 国产精品天天摸av网| 免费成人在线观看视频| 91一区二区在线| 欧美国产日产图区| 精品一区二区三区在线视频| 欧美日韩一区在线| 成人免费一区二区三区视频 | 欧美日韩一区二区三区在线看| 国产欧美一区二区在线观看| 日韩av电影天堂| 欧美日韩成人在线| 亚洲欧美视频在线观看| 国产精品主播直播| 精品久久久久一区二区国产| 日韩国产在线观看| 欧美日韩中字一区| 亚洲黄色小视频| 91啦中文在线观看| 亚洲视频一区二区免费在线观看| 国产精品1024| 久久精品日韩一区二区三区| 九九久久精品视频| 精品免费一区二区三区| 免费欧美在线视频| 777久久久精品| 青草国产精品久久久久久| 在线成人av影院| 乱中年女人伦av一区二区| 欧美一级片在线观看| 蜜臀久久99精品久久久画质超高清 | 欧美国产日本韩| 国产成a人亚洲精品| 亚洲国产成人私人影院tom| 国产激情91久久精品导航 |