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

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

?? os_task.c

?? UC/OS-II移植到s3c2440代碼
?? 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香蕉国产在线观看软件| 在线观看不卡一区| 亚洲最新在线观看| 欧美日韩亚洲综合在线| 日韩电影在线观看电影| 日韩欧美久久久| 国产一区二区美女诱惑| 中文字幕一区二区三区在线观看| 99久久综合99久久综合网站| 亚洲黄色av一区| 欧美日本国产视频| 国产真实乱对白精彩久久| 国产精品三级在线观看| 91视频.com| 午夜久久久久久久久久一区二区| 欧美一区二区三区视频在线 | 亚洲猫色日本管| 一本到不卡免费一区二区| 亚洲综合色丁香婷婷六月图片| 91麻豆精品国产自产在线观看一区 | 精品国产髙清在线看国产毛片| 国产曰批免费观看久久久| 国产精品久久久久久久久免费相片 | 国产麻豆欧美日韩一区| 欧美国产视频在线| 欧美三级电影网| 国产一区二区三区av电影| 亚洲另类春色校园小说| 欧美一区二区高清| va亚洲va日韩不卡在线观看| 香蕉影视欧美成人| 麻豆传媒一区二区三区| 国产日韩综合av| 欧美日韩国产免费| 国产成人精品免费网站| 天天色天天操综合| 欧美激情一区二区三区四区| 欧美精品一卡两卡| 成人性生交大片免费看中文网站| 视频在线观看91| 国产精品久久免费看| 91精品国产综合久久福利| 成人av高清在线| 日本不卡视频在线| 亚洲欧美日韩在线播放| ww亚洲ww在线观看国产| 欧美三级日本三级少妇99| 国产91精品久久久久久久网曝门| 午夜电影网一区| 中文字幕日韩av资源站| 精品国产乱码久久久久久闺蜜| 欧美性极品少妇| 成人av集中营| 国产精品一区二区三区99| 青娱乐精品视频| 亚洲影视资源网| 亚洲欧美日韩国产综合在线| 久久先锋影音av鲁色资源| 欧美妇女性影城| 欧洲精品一区二区三区在线观看| 成人va在线观看| 成人午夜电影小说| 国产专区欧美精品| 精品一区二区三区在线播放 | 91在线视频18| 国产99久久久国产精品潘金 | 日韩电影在线观看网站| 亚洲一区二区不卡免费| 亚洲欧美激情视频在线观看一区二区三区| 久久影院午夜片一区| 日韩欧美视频一区| 337p亚洲精品色噜噜噜| 欧美精品aⅴ在线视频| 91久久一区二区| 在线看国产日韩| 日本国产一区二区| 在线看一区二区| 精品视频一区 二区 三区| 欧美中文字幕一区| 欧美日韩国产片| 91精品国产一区二区| 日韩一级片网址| 欧美电影免费观看高清完整版| 日韩一区二区在线看| 欧美一级片免费看| 欧美大白屁股肥臀xxxxxx| 日韩精品在线网站| 久久久国产精品不卡| 欧美精彩视频一区二区三区| 国产精品视频麻豆| 亚洲免费在线电影| 亚洲第一成年网| 美女任你摸久久| 国产精品主播直播| 精品国产伦一区二区三区免费 | 日韩高清在线观看| 日韩成人免费电影| 激情综合五月天| 不卡区在线中文字幕| 91福利区一区二区三区| 欧美精品一级二级| 久久综合视频网| 中文字幕一区二区三| 亚洲综合一区二区| 麻豆精品视频在线| 国产成人av影院| 色诱亚洲精品久久久久久| 欧美群妇大交群的观看方式| 日韩午夜在线播放| 国产精品网站在线| 午夜欧美视频在线观看| 国产在线精品一区在线观看麻豆| 不卡视频一二三四| 91精品国产综合久久久久久久| 久久免费午夜影院| 亚洲美女视频在线| 九九久久精品视频| 91免费版在线| 精品国产91久久久久久久妲己| 中文av字幕一区| 午夜免费久久看| 成人国产精品免费观看动漫| 欧美老年两性高潮| 亚洲国产精品成人综合| 日韩国产在线观看一区| 成人午夜电影网站| 制服丝袜成人动漫| 国产精品卡一卡二| 麻豆视频观看网址久久| 日本高清视频一区二区| 久久久久国色av免费看影院| 亚洲va欧美va国产va天堂影院| 成人激情免费网站| 日韩欧美一级在线播放| 一区二区三区中文免费| 国内精品视频一区二区三区八戒| 色香蕉久久蜜桃| 国产嫩草影院久久久久| 石原莉奈一区二区三区在线观看| aaa欧美色吧激情视频| 欧美精品一区二区久久婷婷 | 中文字幕中文乱码欧美一区二区| 视频一区在线播放| 色哟哟欧美精品| 国产精品麻豆99久久久久久| 国内一区二区视频| 日韩一级高清毛片| 亚洲国产欧美在线| 一本到一区二区三区| 国产精品成人免费在线| 欧美电视剧免费观看| 亚洲尤物在线视频观看| 91视频观看视频| **性色生活片久久毛片| 丁香六月综合激情| 国产视频在线观看一区二区三区| 蜜臀av性久久久久蜜臀aⅴ流畅 | 精品国内二区三区| 肉丝袜脚交视频一区二区| 日本精品视频一区二区三区| 中文字幕亚洲视频| 不卡的av电影在线观看| 国产喷白浆一区二区三区| 激情深爱一区二区| 精品欧美乱码久久久久久 | 欧美精品乱码久久久久久按摩| 亚洲人成伊人成综合网小说| 不卡一区中文字幕| 中文字幕中文在线不卡住| av日韩在线网站| 亚洲欧美综合另类在线卡通| 成人av在线电影| 亚洲视频免费观看| 日本道色综合久久| 亚洲国产一区二区a毛片| 欧美视频完全免费看| 五月婷婷综合网| 欧美一区二区在线免费播放| 免费不卡在线视频| www久久精品| 国产一区啦啦啦在线观看| 久久精品亚洲精品国产欧美| 国产伦精品一区二区三区视频青涩 | 一区二区三区四区不卡视频| 欧美在线制服丝袜| 日韩极品在线观看| 日韩精品专区在线影院重磅| 国产精品一卡二| 亚洲欧洲成人av每日更新| 欧美体内she精高潮| 免费在线观看精品| 欧美激情在线一区二区三区| 91片在线免费观看| 亚洲一区二区五区| 精品少妇一区二区三区日产乱码| 国产精品系列在线播放| 亚洲欧美国产高清| 精品少妇一区二区三区日产乱码| 成人免费毛片嘿嘿连载视频|