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

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? os_q.c

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

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

#if (OS_Q_EN > 0) && (OS_MAX_QS > 0)
/*
*********************************************************************************************************
*                                      ACCEPT MESSAGE FROM QUEUE
*
* Description: This function checks the queue to see if a message is available.  Unlike OSQPend(),
*              OSQAccept() does not suspend the calling task if a message is not available.
*
* Arguments  : pevent        is a pointer to the event control block
*
* Returns    : != (void *)0  is the message in the queue if one is available.  The message is removed
*                            from the so the next time OSQAccept() is called, the queue will contain
*                            one less entry.
*              == (void *)0  if the queue is empty or,
*                            if 'pevent' is a NULL pointer or,
*                            if you passed an invalid event type
*********************************************************************************************************
*/

#if OS_Q_ACCEPT_EN > 0
void  *OSQAccept (OS_EVENT *pevent)
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr;
#endif
    void      *msg;
    OS_Q      *pq;


#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {               /* Validate 'pevent'                                  */
        return ((void *)0);
    }
    if (pevent->OSEventType != OS_EVENT_TYPE_Q) {/* Validate event block type                          */
        return ((void *)0);
    }
#endif
    OS_ENTER_CRITICAL();
    pq = (OS_Q *)pevent->OSEventPtr;             /* Point at queue control block                       */
    if (pq->OSQEntries > 0) {                    /* See if any messages in the queue                   */
        msg = *pq->OSQOut++;                     /* Yes, extract oldest message from the queue         */
        pq->OSQEntries--;                        /* Update the number of entries in the queue          */
        if (pq->OSQOut == pq->OSQEnd) {          /* Wrap OUT pointer if we are at the end of the queue */
            pq->OSQOut = pq->OSQStart;
        }
    } else {
        msg = (void *)0;                         /* Queue is empty                                     */
    }
    OS_EXIT_CRITICAL();
    return (msg);                                /* Return message received (or NULL)                  */
}
#endif
/*$PAGE*/
/*
*********************************************************************************************************
*                                        CREATE A MESSAGE QUEUE
*
* Description: This function creates a message queue if free event control blocks are available.
*
* Arguments  : start         is a pointer to the base address of the message queue storage area.  The
*                            storage area MUST be declared as an array of pointers to 'void' as follows
*
*                            void *MessageStorage[size]
*
*              size          is the number of elements in the storage area
*
* Returns    : != (OS_EVENT *)0  is a pointer to the event control clock (OS_EVENT) associated with the
*                                created queue
*              == (OS_EVENT *)0  if no event control blocks were available or an error was detected
*********************************************************************************************************
*/

OS_EVENT  *OSQCreate (void **start, INT16U size)
{
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr;
#endif
    OS_EVENT  *pevent;
    OS_Q      *pq;


    if (OSIntNesting > 0) {                      /* See if called from ISR ...                         */
        return ((OS_EVENT *)0);                  /* ... can't CREATE from an ISR                       */
    }
    OS_ENTER_CRITICAL();
    pevent = OSEventFreeList;                    /* Get next free event control block                  */
    if (OSEventFreeList != (OS_EVENT *)0) {      /* See if pool of free ECB pool was empty             */
        OSEventFreeList = (OS_EVENT *)OSEventFreeList->OSEventPtr;
    }
    OS_EXIT_CRITICAL();
    if (pevent != (OS_EVENT *)0) {               /* See if we have an event control block              */
        OS_ENTER_CRITICAL();
        pq = OSQFreeList;                        /* Get a free queue control block                     */
        if (pq != (OS_Q *)0) {                   /* Were we able to get a queue control block ?        */
            OSQFreeList         = OSQFreeList->OSQPtr;    /* Yes, Adjust free list pointer to next free*/
            OS_EXIT_CRITICAL();
            pq->OSQStart        = start;                  /*      Initialize the queue                 */
            pq->OSQEnd          = &start[size];
            pq->OSQIn           = start;
            pq->OSQOut          = start;
            pq->OSQSize         = size;
            pq->OSQEntries      = 0;
            pevent->OSEventType = OS_EVENT_TYPE_Q;
            pevent->OSEventCnt  = 0;
            pevent->OSEventPtr  = pq;
            OS_EventWaitListInit(pevent);                 /*      Initalize the wait list              */
        } else {
            pevent->OSEventPtr = (void *)OSEventFreeList; /* No,  Return event control block on error  */
            OSEventFreeList    = pevent;
            OS_EXIT_CRITICAL();
            pevent = (OS_EVENT *)0;
        }
    }
    return (pevent);
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                        DELETE A MESSAGE QUEUE
*
* Description: This function deletes a message queue and readies all tasks pending on the queue.
*
* Arguments  : pevent        is a pointer to the event control block associated with the desired
*                            queue.
*
*              opt           determines delete options as follows:
*                            opt == OS_DEL_NO_PEND   Delete the queue ONLY if no task pending
*                            opt == OS_DEL_ALWAYS    Deletes the queue 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 queue was deleted
*                            OS_ERR_DEL_ISR          If you tried to delete the queue from an ISR
*                            OS_ERR_INVALID_OPT      An invalid option was specified
*                            OS_ERR_TASK_WAITING     One or more tasks were waiting on the queue
*                            OS_ERR_EVENT_TYPE       If you didn't pass a pointer to a queue
*                            OS_ERR_PEVENT_NULL      If 'pevent' is a NULL pointer.
*
* Returns    : pevent        upon error
*              (OS_EVENT *)0 if the queue was successfully deleted.
*
* Note(s)    : 1) This function must be used with care.  Tasks that would normally expect the presence of
*                 the queue MUST check the return code of OSQPend().
*              2) OSQAccept() callers will not know that the intended queue has been deleted unless
*                 they check 'pevent' to see that it's a NULL pointer.
*              3) 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 queue.
*              4) Because ALL tasks pending on the queue will be readied, you MUST be careful in
*                 applications where the queue is used for mutual exclusion because the resource(s)
*                 will no longer be guarded by the queue.
*              5) If the storage for the message queue was allocated dynamically (i.e. using a malloc()
*                 type call) then your application MUST release the memory storage by call the counterpart
*                 call of the dynamic allocation scheme used.  If the queue storage was created statically
*                 then, the storage can be reused.
*********************************************************************************************************
*/

#if OS_Q_DEL_EN > 0
OS_EVENT  *OSQDel (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;
    OS_Q      *pq;


    if (OSIntNesting > 0) {                                /* See if called from ISR ...               */
        *err = OS_ERR_DEL_ISR;                             /* ... can't DELETE from an ISR             */
        return ((OS_EVENT *)0);
    }
#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {                         /* Validate 'pevent'                        */
        *err = OS_ERR_PEVENT_NULL;
        return (pevent);
    }
    if (pevent->OSEventType != OS_EVENT_TYPE_Q) {          /* 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 queue        */
        tasks_waiting = TRUE;                              /* Yes                                      */
    } else {
        tasks_waiting = FALSE;                             /* No                                       */
    }
    switch (opt) {
        case OS_DEL_NO_PEND:                               /* Delete queue only if no task waiting     */
             if (tasks_waiting == FALSE) {
                 pq                  = (OS_Q *)pevent->OSEventPtr;  /* Return OS_Q to free list        */
                 pq->OSQPtr          = OSQFreeList;
                 OSQFreeList         = pq;
                 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();
                 *err = OS_NO_ERR;
                 return ((OS_EVENT *)0);                   /* Queue has been deleted                   */
             } else {
                 OS_EXIT_CRITICAL();
                 *err = OS_ERR_TASK_WAITING;
                 return (pevent);
             }

        case OS_DEL_ALWAYS:                                /* Always delete the queue                  */
             while (pevent->OSEventGrp != 0x00) {          /* Ready ALL tasks waiting for queue        */
                 OS_EventTaskRdy(pevent, (void *)0, OS_STAT_Q);
             }
             pq                  = (OS_Q *)pevent->OSEventPtr;      /* Return OS_Q to free list        */
             pq->OSQPtr          = OSQFreeList;
             OSQFreeList         = pq;
             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);                       /* Queue has been deleted                   */

        default:
             OS_EXIT_CRITICAL();

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品久久99| 亚洲国产精品视频| 不卡一区在线观看| 国产精品久久久久久久久快鸭| 美女在线视频一区| 精品奇米国产一区二区三区| 美国十次了思思久久精品导航| 欧美日韩在线播| 美国十次了思思久久精品导航| 日韩一区二区不卡| 91在线观看高清| 一片黄亚洲嫩模| 精品欧美一区二区久久| av在线免费不卡| 久久99久久精品| 亚洲天堂2014| 久久久三级国产网站| 一本色道久久综合狠狠躁的推荐| 日韩极品在线观看| 日本一区二区成人| 日韩欧美一二三| 欧洲中文字幕精品| 99免费精品视频| 精品一区二区三区视频在线观看| 亚洲情趣在线观看| 欧美日韩国产综合视频在线观看| 精品一区二区免费| 日韩综合小视频| 亚洲精品国产a久久久久久 | 99久久综合精品| 黄色成人免费在线| 日韩国产精品久久| 午夜av一区二区三区| 亚洲三级理论片| 亚洲精品国产成人久久av盗摄| 中文字幕精品三区| 久久精品亚洲精品国产欧美kt∨| 91香蕉国产在线观看软件| 色狠狠色狠狠综合| 久久精品国产免费| 久久久久久久久99精品| 国产乱人伦偷精品视频免下载| www国产精品av| 久久亚洲精精品中文字幕早川悠里| 欧洲精品中文字幕| 欧美视频一二三区| 欧美成人猛片aaaaaaa| 日韩一区二区三区四区五区六区| 91精品久久久久久久99蜜桃| 欧美精品在线观看一区二区| 日韩女优毛片在线| 国产日韩欧美激情| 亚洲精品免费电影| 国产在线播放一区三区四| gogogo免费视频观看亚洲一| 欧美三区免费完整视频在线观看| 日韩欧美另类在线| 一区二区三区资源| 久久草av在线| 欧美日韩国产高清一区二区 | 精品视频资源站| 欧美丝袜丝交足nylons图片| 精品日韩一区二区三区| 综合色天天鬼久久鬼色| 久久精品久久综合| 欧洲精品在线观看| 久久久久久久久久久久电影| 亚洲va韩国va欧美va| 高清成人免费视频| 日韩精品一区二区三区在线| 亚洲免费高清视频在线| 国产成人综合网站| 欧美xxx久久| 日韩高清在线一区| 欧美精品vⅰdeose4hd| 一区二区三区在线免费播放| 福利91精品一区二区三区| 欧美成人a在线| 国产乱理伦片在线观看夜一区| 欧美卡1卡2卡| 美女高潮久久久| 日韩精品影音先锋| 久久99精品视频| 久久综合九色欧美综合狠狠| 久久99精品视频| 欧美极品xxx| 色综合天天天天做夜夜夜夜做| 国产视频一区在线播放| 成人免费的视频| 亚洲伦理在线免费看| 欧美日韩精品三区| 国产精品一二三在| 一区二区在线观看视频在线观看| 欧美视频日韩视频| 精品一区二区三区在线视频| 国产精品无码永久免费888| 成人精品一区二区三区四区| 亚洲已满18点击进入久久| 一本色道久久综合亚洲精品按摩| 日韩电影免费一区| 中文字幕精品一区二区精品绿巨人 | 精品少妇一区二区三区日产乱码 | 麻豆久久久久久| 亚洲人成在线播放网站岛国| 91精品在线一区二区| 成人午夜激情视频| 毛片一区二区三区| 亚洲综合激情另类小说区| 国产视频一区二区三区在线观看 | 777午夜精品免费视频| 成人一区二区三区视频 | 视频一区视频二区在线观看| 国产精品三级av| 中文字幕国产精品一区二区| 欧美成人伊人久久综合网| 欧美日韩免费不卡视频一区二区三区| 国产盗摄一区二区三区| 极品美女销魂一区二区三区免费| 亚洲激情自拍偷拍| 亚洲免费在线视频| 亚洲成a人片在线不卡一二三区| 精品成人佐山爱一区二区| 欧美高清一级片在线| 在线视频综合导航| 欧美在线看片a免费观看| 色中色一区二区| 国产.精品.日韩.另类.中文.在线.播放| 日韩中文字幕1| 激情六月婷婷综合| 日韩av一区二区三区四区| 亚洲一区二区三区四区五区中文| 中文字幕第一页久久| 中文字幕中文乱码欧美一区二区| 久久久久久亚洲综合| 亚洲国产精品成人综合 | 精品在线免费观看| 久久不见久久见免费视频7| 中文字幕一区在线观看| 中文字幕视频一区| 亚洲制服欧美中文字幕中文字幕| 亚洲电影在线免费观看| 爽好久久久欧美精品| 国产精品亚洲一区二区三区在线| 国产高清不卡一区| 欧美性做爰猛烈叫床潮| 日韩欧美一区中文| 欧美激情一区在线观看| 夜夜爽夜夜爽精品视频| 国产精品影视在线| 在线观看视频91| 精品国产露脸精彩对白| 亚洲理论在线观看| 丁香网亚洲国际| 91精品国产综合久久久久久久| 久久婷婷综合激情| 亚洲成av人片一区二区三区| 日韩专区在线视频| 欧美另类变人与禽xxxxx| 日本一区二区视频在线| 青青草国产成人av片免费| 成人一级黄色片| 国产精品美女久久久久av爽李琼| 天天影视网天天综合色在线播放| 国产99久久久国产精品潘金| 91精品国产一区二区三区| 香蕉久久一区二区不卡无毒影院 | 国产一区欧美日韩| 欧美一区二区三区四区五区| 亚洲欧美视频在线观看视频| 麻豆视频观看网址久久| 国产视频一区不卡| 国产精品一二三四区| 久久精品亚洲精品国产欧美kt∨ | 国产亚洲美州欧州综合国| 亚洲福利一区二区三区| 欧美日韩色综合| 亚洲成人动漫一区| 欧美日韩国产一级片| 亚洲丰满少妇videoshd| 久久久国产午夜精品| 国产成人av一区| 日本一区二区三区dvd视频在线| 成人免费观看视频| 日本欧美在线观看| 亚洲精品在线电影| 成人深夜视频在线观看| 亚洲成人资源网| 久久综合丝袜日本网| 91免费观看视频| 日韩福利电影在线观看| 欧美一区二区在线看| 丁香婷婷综合激情五月色| 亚洲免费在线视频| 欧美va在线播放| 欧美精品成人一区二区三区四区| 国产乱码精品一区二区三区忘忧草 | av在线这里只有精品| 免费高清在线一区| 亚洲一区二区三区小说| 亚洲男人的天堂一区二区|