亚洲欧美第一页_禁久久精品乱码_粉嫩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一区二区三区免费野_久草精品视频
国产精品主播直播| 日本一区二区电影| 高清不卡一区二区在线| 亚洲情趣在线观看| 久久综合一区二区| 欧美四级电影在线观看| 国产 日韩 欧美大片| 日韩精品欧美成人高清一区二区| 国产亚洲欧美色| 欧美一二三区在线| 在线亚洲一区二区| 成人手机在线视频| 狠狠色丁香久久婷婷综合_中| 亚洲国产精品一区二区久久 | 老司机精品视频在线| 亚洲视频精选在线| 国产亚洲欧美在线| 亚洲精品在线免费播放| 91精品国产综合久久福利软件| 91浏览器打开| av亚洲精华国产精华精| 国产精品一区一区| 日本成人在线电影网| 亚洲大尺度视频在线观看| 亚洲欧美另类在线| 国产欧美日韩视频一区二区| xvideos.蜜桃一区二区| 精品国产亚洲一区二区三区在线观看| 欧美又粗又大又爽| 国产精品系列在线播放| 国产一区视频网站| 九色综合国产一区二区三区| 美女一区二区在线观看| 毛片一区二区三区| 日本欧美韩国一区三区| 精品久久久久久久一区二区蜜臀| 欧美三级视频在线播放| 欧美在线啊v一区| 欧美午夜电影网| 欧美丝袜自拍制服另类| 欧美日韩午夜在线| 欧美精品在线一区二区| 91.com视频| 制服.丝袜.亚洲.另类.中文| 91精品国产一区二区三区香蕉| 91精品国产综合久久小美女| 日韩午夜av电影| 久久综合色综合88| 欧美国产在线观看| 最新久久zyz资源站| 亚洲精品第一国产综合野| 亚洲午夜在线观看视频在线| 亚洲.国产.中文慕字在线| 日韩高清在线不卡| 精品制服美女丁香| 国产成人自拍网| 91在线观看美女| 欧美午夜精品久久久久久超碰| 91精品国产综合久久国产大片| 亚洲精品在线免费播放| 国产精品久久久久久久久动漫| 亚洲色图在线看| 天堂久久久久va久久久久| 日韩精品电影一区亚洲| 国产一区二区三区四区五区美女 | 国产成人在线视频播放| 99这里只有久久精品视频| 在线观看91视频| 欧美成人三级在线| 中文字幕一区二区三区在线不卡| 一区二区三区波多野结衣在线观看| 亚洲国产精品久久久久婷婷884 | 中文字幕在线观看一区| 亚洲午夜免费视频| 韩国三级在线一区| 91日韩精品一区| 日韩欧美中文一区| 亚洲欧美综合色| 日韩电影在线免费看| 国产99精品国产| 欧美日韩成人综合| 91精品国产一区二区三区| 综合av第一页| 蜜臀av一区二区三区| 成人深夜福利app| 欧美日本一区二区三区四区| 久久亚洲精品国产精品紫薇| 有坂深雪av一区二区精品| 久久av老司机精品网站导航| 91网址在线看| 久久综合色天天久久综合图片| 夜夜操天天操亚洲| 国产精品自在欧美一区| 欧美日韩亚洲综合| 国产精品污www在线观看| 视频精品一区二区| 91看片淫黄大片一级在线观看| 日韩一级视频免费观看在线| 亚洲欧美国产三级| 国产高清在线精品| 91精品国产综合久久国产大片| 综合久久久久综合| 国产伦精品一区二区三区在线观看| 欧美亚洲一区三区| 国产精品短视频| 国产一区久久久| 日韩区在线观看| 亚洲高清视频中文字幕| 91同城在线观看| 欧美激情中文不卡| 精品一区二区日韩| 日韩一区二区三区视频在线观看| 亚洲激情在线播放| 不卡av免费在线观看| 久久久99精品免费观看不卡| 麻豆91精品91久久久的内涵| 欧美日本国产视频| 亚洲最新视频在线播放| 99免费精品视频| 欧美国产日韩在线观看| 国产在线精品一区二区夜色| 日韩精品一区二区三区中文不卡 | 国产一区二区三区免费播放| 91精品国产91久久久久久一区二区| 一区二区三区小说| 色综合久久久久综合体桃花网| 欧美国产日产图区| 成人免费毛片app| 国产v日产∨综合v精品视频| 久久se这里有精品| 欧美年轻男男videosbes| 亚洲综合免费观看高清完整版在线| 99热精品一区二区| 有码一区二区三区| 91久久精品国产91性色tv| 亚洲欧美激情一区二区| 91免费国产在线| 亚洲乱码国产乱码精品精的特点| av网站免费线看精品| 亚洲视频每日更新| 欧美亚洲一区二区在线观看| 亚洲电影一区二区三区| 欧美男同性恋视频网站| 蜜臀精品久久久久久蜜臀 | 精品国产91久久久久久久妲己 | 亚洲一区二区三区小说| 欧美在线free| 美女网站视频久久| 久久精品欧美一区二区三区麻豆| 国产一区二区不卡| 国产精品国产三级国产普通话99| 91丨porny丨蝌蚪视频| 一区二区成人在线观看| 69久久99精品久久久久婷婷 | 欧洲另类一二三四区| 亚洲午夜激情网页| 日韩欧美一区中文| 国产一区二区三区久久悠悠色av| 国产精品免费久久久久| 色综合一区二区三区| 首页国产欧美久久| 2014亚洲片线观看视频免费| 99久久精品国产麻豆演员表| 亚洲国产美女搞黄色| 精品黑人一区二区三区久久| 成人免费视频视频在线观看免费| 亚洲乱码国产乱码精品精98午夜 | 亚洲视频一区在线观看| 欧美午夜一区二区三区 | 欧美主播一区二区三区| 石原莉奈在线亚洲三区| 亚洲国产高清aⅴ视频| 国产乱国产乱300精品| 成人免费av在线| 亚洲午夜精品一区二区三区他趣| 日韩一区二区三区四区五区六区| 成人精品亚洲人成在线| 亚洲高清中文字幕| 久久久国产午夜精品| 在线亚洲一区二区| 国产福利一区二区三区视频在线 | 亚洲精品一区二区三区99| k8久久久一区二区三区| 日韩av中文在线观看| 国产精品美女一区二区三区| 欧美精品自拍偷拍| 99免费精品在线观看| 狠狠色丁香久久婷婷综合丁香| 夜夜精品浪潮av一区二区三区| 久久蜜桃一区二区| 欧美剧情片在线观看| 成人国产在线观看| 久久成人精品无人区| 亚洲一级不卡视频| 欧美激情一区在线观看| 欧美一级二级在线观看| 欧洲国内综合视频| 波多野结衣亚洲一区| 九九九久久久精品| 视频一区欧美精品|