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

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

?? os_mutex.c

?? ucos-II 在arm7 lpc2106 proteus仿真顯示 lcd圖片 。。整個工程
?? C
?? 第 1 頁 / 共 2 頁
字號:
/*
*********************************************************************************************************
*                                                uC/OS-II
*                                          The Real-Time Kernel
*                                  MUTUAL EXCLUSION SEMAPHORE MANAGEMENT
*
*                          (c) Copyright 1992-2002, Jean J. Labrosse, Weston, FL
*                                           All Rights Reserved
*
* File : OS_MUTEX.C
* By   : Jean J. Labrosse
*********************************************************************************************************
*/

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

/*
*********************************************************************************************************
*                                            LOCAL CONSTANTS
*********************************************************************************************************
*/

#define  OS_MUTEX_KEEP_LOWER_8   0x00FF
#define  OS_MUTEX_KEEP_UPPER_8   0xFF00

#define  OS_MUTEX_AVAILABLE      0x00FF


#if OS_MUTEX_EN > 0
/*
*********************************************************************************************************
*                                   ACCEPT MUTUAL EXCLUSION SEMAPHORE
*
* Description: This  function checks the mutual exclusion semaphore to see if a resource is available.
*              Unlike OSMutexPend(), OSMutexAccept() does not suspend the calling task if the resource is
*              not available or the event did not occur.
*
* Arguments  : pevent     is a pointer to the event control block
*
*              err        is a pointer to an error code which will be returned to your application:
*                            OS_NO_ERR          if the call was successful.
*                            OS_ERR_EVENT_TYPE  if 'pevent' is not a pointer to a mutex
*                            OS_ERR_PEVENT_NULL 'pevent' is a NULL pointer
*                            OS_ERR_PEND_ISR     if you called this function from an ISR
*
* Returns    : == 1       if the resource is available, the mutual exclusion semaphore is acquired
*              == 0       a) if the resource is not available
*                         b) you didn't pass a pointer to a mutual exclusion semaphore
*                         c) you called this function from an ISR
*
* Warning(s) : This function CANNOT be called from an ISR because mutual exclusion semaphores are
*              intended to be used by tasks only.
*********************************************************************************************************
*/

#if OS_MUTEX_ACCEPT_EN > 0
INT8U  OSMutexAccept (OS_EVENT *pevent, INT8U *err)
{
#if OS_CRITICAL_METHOD == 3                            /* Allocate storage for CPU status register     */
    OS_CPU_SR  cpu_sr;
#endif    
    
    
    if (OSIntNesting > 0) {                            /* Make sure it's not called from an ISR        */
        *err = OS_ERR_PEND_ISR;
        return (0);
    }
#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {                     /* Validate 'pevent'                            */
        *err = OS_ERR_PEVENT_NULL;
        return (0);
    }
    if (pevent->OSEventType != OS_EVENT_TYPE_MUTEX) {  /* Validate event block type                    */
        *err = OS_ERR_EVENT_TYPE;
        return (0);
    }
#endif                                                     
    OS_ENTER_CRITICAL();							   /* Get value (0 or 1) of Mutex                  */
    if ((pevent->OSEventCnt & OS_MUTEX_KEEP_LOWER_8) == OS_MUTEX_AVAILABLE) {     
        pevent->OSEventCnt &= OS_MUTEX_KEEP_UPPER_8;   /*      Mask off LSByte (Acquire Mutex)         */
        pevent->OSEventCnt |= OSTCBCur->OSTCBPrio;     /*      Save current task priority in LSByte    */
        pevent->OSEventPtr  = (void *)OSTCBCur;        /*      Link TCB of task owning Mutex           */
        OS_EXIT_CRITICAL();
        *err = OS_NO_ERR;
        return (1);
    }
    OS_EXIT_CRITICAL();
    *err = OS_NO_ERR;
    return (0);
}
#endif                                                     

/*$PAGE*/
/*
*********************************************************************************************************
*                                  CREATE A MUTUAL EXCLUSION SEMAPHORE
*
* Description: This function creates a mutual exclusion semaphore.
*
* Arguments  : prio          is the priority to use when accessing the mutual exclusion semaphore.  In
*                            other words, when the semaphore is acquired and a higher priority task
*                            attempts to obtain the semaphore then the priority of the task owning the
*                            semaphore is raised to this priority.  It is assumed that you will specify
*                            a priority that is LOWER in value than ANY of the tasks competing for the
*                            mutex.
*
*              err           is a pointer to an error code which will be returned to your application:
*                               OS_NO_ERR           if the call was successful.
*                               OS_ERR_CREATE_ISR   if you attempted to create a MUTEX from an ISR
*                               OS_PRIO_EXIST       if a task at the priority inheritance priority
*                                                   already exist.
*                               OS_ERR_PEVENT_NULL  No more event control blocks available.
*                               OS_PRIO_INVALID     if the priority you specify is higher that the 
*                                                   maximum allowed (i.e. > OS_LOWEST_PRIO)
*
* Returns    : != (void *)0  is a pointer to the event control clock (OS_EVENT) associated with the
*                            created mutex.
*              == (void *)0  if an error is detected.
*
* Note(s)    : 1) The LEAST significant 8 bits of '.OSEventCnt' are used to hold the priority number
*                 of the task owning the mutex or 0xFF if no task owns the mutex.
*              2) The MOST  significant 8 bits of '.OSEventCnt' are used to hold the priority number
*                 to use to reduce priority inversion.
*********************************************************************************************************
*/

OS_EVENT  *OSMutexCreate (INT8U prio, INT8U *err)
{
#if OS_CRITICAL_METHOD == 3                                /* Allocate storage for CPU status register */
    OS_CPU_SR  cpu_sr;
#endif    
    OS_EVENT  *pevent;


    if (OSIntNesting > 0) {                                /* See if called from ISR ...               */
        *err = OS_ERR_CREATE_ISR;                          /* ... can't CREATE mutex from an ISR       */
        return ((OS_EVENT *)0);
    }
#if OS_ARG_CHK_EN > 0
    if (prio >= OS_LOWEST_PRIO) {                          /* Validate PIP                             */
        *err = OS_PRIO_INVALID;
        return ((OS_EVENT *)0);
    }
#endif
    OS_ENTER_CRITICAL();
    if (OSTCBPrioTbl[prio] != (OS_TCB *)0) {               /* Mutex priority must not already exist    */
        OS_EXIT_CRITICAL();                                /* Task already exist at priority ...       */
        *err = OS_PRIO_EXIST;                              /* ... inheritance priority                 */
        return ((OS_EVENT *)0);                            
    }
    OSTCBPrioTbl[prio] = (OS_TCB *)1;                      /* Reserve the table entry                  */
    pevent             = OSEventFreeList;                  /* Get next free event control block        */
    if (pevent == (OS_EVENT *)0) {                         /* See if an ECB was available              */
        OSTCBPrioTbl[prio] = (OS_TCB *)0;                  /* No, Release the table entry              */
        OS_EXIT_CRITICAL();
        *err               = OS_ERR_PEVENT_NULL;           /* No more event control blocks             */
        return (pevent);
    }
    OSEventFreeList     = (OS_EVENT *)OSEventFreeList->OSEventPtr;   /* Adjust the free list           */
    OS_EXIT_CRITICAL();
    pevent->OSEventType = OS_EVENT_TYPE_MUTEX;
    pevent->OSEventCnt  = (prio << 8) | OS_MUTEX_AVAILABLE;/* Resource is available                    */
    pevent->OSEventPtr  = (void *)0;                       /* No task owning the mutex                 */
    OS_EventWaitListInit(pevent);
    *err                = OS_NO_ERR;
    return (pevent);
}

/*$PAGE*/
/*
*********************************************************************************************************
*                                          DELETE A MUTEX
*
* Description: This function deletes a mutual exclusion semaphore and readies all tasks pending on the it.
*
* Arguments  : pevent        is a pointer to the event control block associated with the desired mutex.
*
*              opt           determines delete options as follows:
*                            opt == OS_DEL_NO_PEND   Delete mutex ONLY if no task pending
*                            opt == OS_DEL_ALWAYS    Deletes the mutex even if tasks are waiting.
*                                                    In this case, all the tasks pending will be readied.
*
*              err           is a pointer to an error code that can contain one of the following values:
*                            OS_NO_ERR               The call was successful and the mutex was deleted
*                            OS_ERR_DEL_ISR          If you attempted to delete the MUTEX from an ISR
*                            OS_ERR_INVALID_OPT      An invalid option was specified
*                            OS_ERR_TASK_WAITING     One or more tasks were waiting on the mutex
*                            OS_ERR_EVENT_TYPE       If you didn't pass a pointer to a mutex
*                            OS_ERR_PEVENT_NULL      If 'pevent' is a NULL pointer.
*
* Returns    : pevent        upon error
*              (OS_EVENT *)0 if the mutex was successfully deleted.
*
* Note(s)    : 1) This function must be used with care.  Tasks that would normally expect the presence of
*                 the mutex MUST check the return code of OSMutexPend().
*              2) This call can potentially disable interrupts for a long time.  The interrupt disable
*                 time is directly proportional to the number of tasks waiting on the mutex.
*              3) Because ALL tasks pending on the mutex will be readied, you MUST be careful because the
*                 resource(s) will no longer be guarded by the mutex.
*********************************************************************************************************
*/

#if OS_MUTEX_DEL_EN
OS_EVENT  *OSMutexDel (OS_EVENT *pevent, INT8U opt, INT8U *err)
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr;
#endif    
    BOOLEAN    tasks_waiting;
    INT8U      pip;


    if (OSIntNesting > 0) {                                /* See if called from ISR ...               */
        *err = OS_ERR_DEL_ISR;                             /* ... can't DELETE from an ISR             */
        return (pevent);
    }
#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {                         /* Validate 'pevent'                        */
        *err = OS_ERR_PEVENT_NULL;
        return ((OS_EVENT *)0);
    }
    if (pevent->OSEventType != OS_EVENT_TYPE_MUTEX) {      /* Validate event block type                */
        *err = OS_ERR_EVENT_TYPE;
        return (pevent);
    }
#endif
    OS_ENTER_CRITICAL();
    if (pevent->OSEventGrp != 0x00) {                      /* See if any tasks waiting on mutex        */
        tasks_waiting = TRUE;                              /* Yes                                      */
    } else {
        tasks_waiting = FALSE;                             /* No                                       */
    }
    switch (opt) {
        case OS_DEL_NO_PEND:                               /* Delete mutex only if no task waiting     */
             if (tasks_waiting == FALSE) {
                 pip                 = (INT8U)(pevent->OSEventCnt >> 8);
                 OSTCBPrioTbl[pip]   = (OS_TCB *)0;        /* Free up the PIP                          */
                 pevent->OSEventType = OS_EVENT_TYPE_UNUSED;
                 pevent->OSEventPtr  = OSEventFreeList;    /* Return Event Control Block to free list  */
                 OSEventFreeList     = pevent;
                 OS_EXIT_CRITICAL();
                 *err = OS_NO_ERR;
                 return ((OS_EVENT *)0);                   /* Mutex has been deleted                   */
             } else {
                 OS_EXIT_CRITICAL();
                 *err = OS_ERR_TASK_WAITING;
                 return (pevent);
             }

        case OS_DEL_ALWAYS:                                /* Always delete the mutex                  */
             while (pevent->OSEventGrp != 0x00) {          /* Ready ALL tasks waiting for mutex        */
                 OS_EventTaskRdy(pevent, (void *)0, OS_STAT_MUTEX);
             }
             pip                 = (INT8U)(pevent->OSEventCnt >> 8);
             OSTCBPrioTbl[pip]   = (OS_TCB *)0;            /* Free up the PIP                          */
             pevent->OSEventType = OS_EVENT_TYPE_UNUSED;
             pevent->OSEventPtr  = OSEventFreeList;        /* Return Event Control Block to free list  */
             OSEventFreeList     = pevent;                 /* Get next free event control block        */
             OS_EXIT_CRITICAL();
             if (tasks_waiting == TRUE) {                  /* Reschedule only if task(s) were waiting  */
                 OS_Sched();                               /* Find highest priority task ready to run  */
             }
             *err = OS_NO_ERR;
             return ((OS_EVENT *)0);                       /* Mutex has been deleted                   */

        default:
             OS_EXIT_CRITICAL();
             *err = OS_ERR_INVALID_OPT;
             return (pevent);
    }

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩精品视频网| 91色在线porny| 成人免费观看视频| 91蜜桃婷婷狠狠久久综合9色| 欧美日韩不卡一区| 亚洲女女做受ⅹxx高潮| 国产一级精品在线| 欧美一区二区精品在线| 亚洲欧美电影院| 国产成人综合精品三级| 91精品福利在线一区二区三区| 国产精品免费视频网站| 韩国三级在线一区| 制服丝袜在线91| 亚洲一区在线观看免费观看电影高清 | 成人免费视频视频在线观看免费| 欧美精品777| 亚洲成a人片综合在线| 99久久婷婷国产综合精品| 337p日本欧洲亚洲大胆色噜噜| 首页综合国产亚洲丝袜| 欧洲精品中文字幕| 一区二区三区蜜桃网| av资源站一区| 1000精品久久久久久久久| 国产成人亚洲综合a∨婷婷| 久久久综合视频| 久久66热re国产| 日韩一二三区视频| 免费欧美在线视频| 日韩一本二本av| 精品一区二区影视| 久久先锋影音av鲁色资源| 久久99精品网久久| 久久人人爽人人爽| 国产成人午夜视频| 亚洲欧美在线视频观看| 99久久夜色精品国产网站| 中文字幕一区二区三区av | 五月婷婷久久丁香| 欧美另类高清zo欧美| 免费高清视频精品| 久久久亚洲精品石原莉奈| 欧美无砖专区一中文字| 亚洲大片精品永久免费| 4hu四虎永久在线影院成人| 五月婷婷综合在线| 欧美大片在线观看一区| 国产精品影视网| 国产精品久久久久久久久免费桃花 | 99久久777色| 一区二区三区在线影院| 欧美久久免费观看| 激情综合亚洲精品| 国产精品高清亚洲| 欧美精品久久99| 久久9热精品视频| 国产精品乱码人人做人人爱| 91丨porny丨户外露出| 丝袜美腿亚洲色图| 久久久精品日韩欧美| 色综合天天视频在线观看| 日韩中文字幕91| 国产视频一区不卡| 欧美视频第二页| 国产成人自拍网| 亚洲福利一区二区| 国产亚洲欧美色| 欧美中文字幕一区二区三区亚洲| 免费观看在线色综合| 国产精品国产三级国产普通话三级 | 一区二区三区在线高清| 欧美剧情片在线观看| 国产福利一区二区| 一区二区三区欧美在线观看| 欧美一区二区黄| eeuss鲁片一区二区三区在线看| 亚洲国产精品一区二区久久 | 亚洲蜜臀av乱码久久精品蜜桃| 91麻豆精品国产综合久久久久久| 国产91丝袜在线播放0| 亚洲高清视频的网址| 国产欧美一区视频| 91精品欧美福利在线观看| youjizz久久| 狠狠狠色丁香婷婷综合激情| 亚洲影视在线观看| 国产精品久久久久久久浪潮网站| 日韩欧美国产综合| 一本色道久久综合亚洲aⅴ蜜桃| 蜜臀精品一区二区三区在线观看 | 91网站最新网址| 国产乱子轮精品视频| 三级一区在线视频先锋| 亚洲精品免费看| 中文字幕国产精品一区二区| 337p粉嫩大胆噜噜噜噜噜91av | 国产寡妇亲子伦一区二区| 爽好多水快深点欧美视频| 亚洲一区av在线| 亚洲午夜精品一区二区三区他趣| 国产欧美精品一区二区三区四区 | 国产精品成人免费| 国产午夜精品久久| 久久综合五月天婷婷伊人| 精品国产网站在线观看| 日韩欧美一区二区不卡| 884aa四虎影成人精品一区| 欧美视频完全免费看| 欧美亚洲国产一区在线观看网站| 91视频免费看| 韩国午夜理伦三级不卡影院| eeuss影院一区二区三区| 成人伦理片在线| 日本韩国欧美在线| 色哟哟在线观看一区二区三区| 国产成都精品91一区二区三| 久久精品国产精品亚洲综合| 热久久一区二区| 免费黄网站欧美| 国产在线国偷精品产拍免费yy| 精品一区二区在线看| 国产精品77777| 成av人片一区二区| 99国产精品一区| 在线免费观看日本欧美| 欧美婷婷六月丁香综合色| 欧美日韩国产色站一区二区三区| 美腿丝袜在线亚洲一区 | 青青草97国产精品免费观看| 中文字幕制服丝袜一区二区三区| 欧美韩日一区二区三区| 日韩一区有码在线| 一个色综合av| 日本人妖一区二区| 国产精品自拍一区| 97超碰欧美中文字幕| 在线免费精品视频| 日韩久久免费av| 国产精品网曝门| 偷拍与自拍一区| 韩国av一区二区三区| 国产iv一区二区三区| 91蝌蚪porny九色| 日韩一区二区免费高清| 国产偷v国产偷v亚洲高清 | 国产亚洲人成网站| 亚洲欧洲99久久| 日本特黄久久久高潮| 国产色91在线| 欧美伊人久久久久久午夜久久久久| 国产精品一区在线观看乱码| 亚洲天堂网中文字| 国产精品小仙女| 色久综合一二码| www日韩大片| 亚洲一区二区三区视频在线播放 | 国产精品美女一区二区三区| 一区二区三区欧美在线观看| 久久成人免费电影| 色婷婷综合在线| 欧美v日韩v国产v| 亚洲精品视频在线观看网站| 久久精品国产澳门| 日本福利一区二区| 久久综合狠狠综合久久激情| 亚洲自拍偷拍av| 成人av在线影院| 日韩精品一区二区三区老鸭窝| 一区二区三区日韩在线观看| 韩国在线一区二区| 欧美丰满嫩嫩电影| 亚洲资源中文字幕| 成人app网站| 久久久精品国产免大香伊| 日本中文一区二区三区| 色婷婷亚洲精品| 国产精品久久久一本精品| 免费一级欧美片在线观看| 欧美三片在线视频观看| 中文字幕一区二| 高清视频一区二区| 国产亚洲精品精华液| 免费在线观看日韩欧美| 欧美精品vⅰdeose4hd| 亚洲免费av在线| 色综合中文综合网| 久久精品视频在线看| 久久99精品久久久久久| 7777精品伊人久久久大香线蕉最新版| 亚洲黄网站在线观看| 99精品1区2区| 亚洲欧美另类在线| 91麻豆国产香蕉久久精品| 日韩一区欧美一区| 色综合色狠狠天天综合色| 亚洲欧美日韩精品久久久久| av亚洲精华国产精华精华| 综合av第一页| 色综合色综合色综合色综合色综合|