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

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

?? os_q.c

?? AT91RM9200的uC/OS的源代碼,大家共享
?? C
?? 第 1 頁 / 共 3 頁
字號:
#if OS_EVENT_NAME_SIZE > 1
             pevent->OSEventName[0] = '?';                 /* Unknown name                             */
             pevent->OSEventName[1] = OS_ASCII_NUL;
#endif
             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  */
             pevent->OSEventCnt     = 0;
             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();
             *err = OS_ERR_INVALID_OPT;
             return (pevent);
    }
}
#endif

/*$PAGE*/
/*
*********************************************************************************************************
*                                             FLUSH QUEUE
*
* Description : This function is used to flush the contents of the message queue.
*
* Arguments   : none
*
* Returns     : OS_NO_ERR           upon success
*               OS_ERR_EVENT_TYPE   If you didn't pass a pointer to a queue
*               OS_ERR_PEVENT_NULL  If 'pevent' is a NULL pointer
*
* WARNING     : You should use this function with great care because, when to flush the queue, you LOOSE
*               the references to what the queue entries are pointing to and thus, you could cause
*               'memory leaks'.  In other words, the data you are pointing to that's being referenced
*               by the queue entries should, most likely, need to be de-allocated (i.e. freed).
*********************************************************************************************************
*/

#if OS_Q_FLUSH_EN > 0
INT8U  OSQFlush (OS_EVENT *pevent)
{
    OS_Q      *pq;
#if OS_CRITICAL_METHOD == 3                           /* Allocate storage for CPU status register      */
    OS_CPU_SR  cpu_sr;



    cpu_sr = 0;                                       /* Prevent compiler warning                      */
#endif    
#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {                    /* Validate 'pevent'                             */
        return (OS_ERR_PEVENT_NULL);
    }
    if (pevent->OSEventType != OS_EVENT_TYPE_Q) {     /* Validate event block type                     */
        return (OS_ERR_EVENT_TYPE);
    }
#endif
    OS_ENTER_CRITICAL();
    pq             = (OS_Q *)pevent->OSEventPtr;      /* Point to queue storage structure              */
    pq->OSQIn      = pq->OSQStart;
    pq->OSQOut     = pq->OSQStart;
    pq->OSQEntries = 0;
    OS_EXIT_CRITICAL();
    return (OS_NO_ERR);
}
#endif

/*$PAGE*/
/*
*********************************************************************************************************
*                                     PEND ON A QUEUE FOR A MESSAGE
*
* Description: This function waits for a message to be sent to a queue
*
* Arguments  : pevent        is a pointer to the event control block associated with the desired queue
*
*              timeout       is an optional timeout period (in clock ticks).  If non-zero, your task will
*                            wait for a message to arrive at the queue up to the amount of time
*                            specified by this argument.  If you specify 0, however, your task will wait
*                            forever at the specified queue or, until a message arrives.
*
*              err           is a pointer to where an error message will be deposited.  Possible error
*                            messages are:
*
*                            OS_NO_ERR           The call was successful and your task received a
*                                                message.
*                            OS_TIMEOUT          A message was not received within the specified timeout
*                            OS_ERR_EVENT_TYPE   You didn't pass a pointer to a queue
*                            OS_ERR_PEVENT_NULL  If 'pevent' is a NULL pointer
*                            OS_ERR_PEND_ISR     If you called this function from an ISR and the result
*                                                would lead to a suspension.
*
* Returns    : != (void *)0  is a pointer to the message received
*              == (void *)0  if you received a NULL pointer message or,
*                            if no message was received or,
*                            if 'pevent' is a NULL pointer or,
*                            if you didn't pass a pointer to a queue.
*
* Note(s)    : As of V2.60, this function allows you to receive NULL pointer messages.
*********************************************************************************************************
*/

void  *OSQPend (OS_EVENT *pevent, INT16U timeout, INT8U *err)
{
    void      *msg;
    OS_Q      *pq;
#if OS_CRITICAL_METHOD == 3                      /* Allocate storage for CPU status register           */
    OS_CPU_SR  cpu_sr;



    cpu_sr = 0;                                  /* Prevent compiler warning                           */
#endif    
    if (OSIntNesting > 0) {                      /* See if called from ISR ...                         */
        *err = OS_ERR_PEND_ISR;                  /* ... can't PEND from an ISR                         */
        return ((void *)0);
    }
#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {               /* Validate 'pevent'                                  */
        *err = OS_ERR_PEVENT_NULL;
        return ((void *)0);
    }
    if (pevent->OSEventType != OS_EVENT_TYPE_Q) {/* Validate event block type                          */
        *err = OS_ERR_EVENT_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;
        }
        OS_EXIT_CRITICAL();
        *err = OS_NO_ERR;
        return (msg);                            /* Return message received                            */
    }
    OSTCBCur->OSTCBStat   |= OS_STAT_Q;          /* Task will have to pend for a message to be posted  */
    OSTCBCur->OSTCBPendTO  = FALSE;
    OSTCBCur->OSTCBDly     = timeout;            /* Load timeout into TCB                              */
    OS_EventTaskWait(pevent);                    /* Suspend task until event or timeout occurs         */
    OS_EXIT_CRITICAL();
    OS_Sched();                                  /* Find next highest priority task ready to run       */
    OS_ENTER_CRITICAL();
    if (OSTCBCur->OSTCBPendTO == TRUE) {         /* Was task readied because of a timeout?             */
        OS_EventTO(pevent);                      /* Yes                                                */
        OS_EXIT_CRITICAL();
        *err = OS_TIMEOUT;                       /*     Indicate a timeout occured                     */
        return ((void *)0);                      /*     No message received                            */
    }
    msg                     = OSTCBCur->OSTCBMsg;/* No, Extract message from TCB (Put there by QPost)  */
    OSTCBCur->OSTCBMsg      = (void *)0;
    OSTCBCur->OSTCBStat     = OS_STAT_RDY;
    OSTCBCur->OSTCBEventPtr = (OS_EVENT *)0;     /*     No longer waiting for event                    */
    OS_EXIT_CRITICAL();
    *err                    = OS_NO_ERR;
    return (msg);                                /*     Return message received                        */
}
/*$PAGE*/
/*
*********************************************************************************************************
*                                        POST MESSAGE TO A QUEUE
*
* Description: This function sends a message to a queue
*
* Arguments  : pevent        is a pointer to the event control block associated with the desired queue
*
*              msg           is a pointer to the message to send.
*
* Returns    : OS_NO_ERR             The call was successful and the message was sent
*              OS_Q_FULL             If the queue cannot accept any more messages because it is full.
*              OS_ERR_EVENT_TYPE     If you didn't pass a pointer to a queue.
*              OS_ERR_PEVENT_NULL    If 'pevent' is a NULL pointer
*
* Note(s)    : As of V2.60, this function allows you to send NULL pointer messages.
*********************************************************************************************************
*/

#if OS_Q_POST_EN > 0
INT8U  OSQPost (OS_EVENT *pevent, void *msg)
{
    OS_Q      *pq;
#if OS_CRITICAL_METHOD == 3                            /* Allocate storage for CPU status register     */
    OS_CPU_SR  cpu_sr;



    cpu_sr = 0;                                        /* Prevent compiler warning                     */
#endif    
#if OS_ARG_CHK_EN > 0
    if (pevent == (OS_EVENT *)0) {                     /* Validate 'pevent'                            */
        return (OS_ERR_PEVENT_NULL);
    }
#endif
    if (pevent->OSEventType != OS_EVENT_TYPE_Q) {      /* Validate event block type                    */
        return (OS_ERR_EVENT_TYPE);
    }
    OS_ENTER_CRITICAL();
    if (pevent->OSEventGrp != 0x00) {                  /* See if any task pending on queue             */
        (void)OS_EventTaskRdy(pevent, msg, OS_STAT_Q); /* Ready highest priority task waiting on event */
        OS_EXIT_CRITICAL();
        OS_Sched();                                    /* Find highest priority task ready to run      */
        return (OS_NO_ERR);
    }
    pq = (OS_Q *)pevent->OSEventPtr;                   /* Point to queue control block                 */
    if (pq->OSQEntries >= pq->OSQSize) {               /* Make sure queue is not full                  */
        OS_EXIT_CRITICAL();
        return (OS_Q_FULL);
    }
    *pq->OSQIn++ = msg;                                /* Insert message into queue                    */
    pq->OSQEntries++;                                  /* Update the nbr of entries in the queue       */
    if (pq->OSQIn == pq->OSQEnd) {                     /* Wrap IN ptr if we are at end of queue        */
        pq->OSQIn = pq->OSQStart;
    }
    OS_EXIT_CRITICAL();
    return (OS_NO_ERR);
}
#endif
/*$PAGE*/
/*
*********************************************************************************************************
*                                   POST MESSAGE TO THE FRONT OF A QUEUE
*
* Description: This function sends a message to a queue but unlike OSQPost(), the message is posted at
*              the front instead of the end of the queue.  Using OSQPostFront() allows you to send
*              'priority' messages.
*
* Arguments  : pevent        is a pointer to the event control block associated with the desired queue
*
*              msg           is a pointer to the message to send.
*
* Returns    : OS_NO_ERR             The call was successful and the message was sent
*              OS_Q_FULL             If the queue cannot accept any more messages because it is full.
*              OS_ERR_EVENT_TYPE     If you didn't pass a pointer to a queue.
*              OS_ERR_PEVENT_NULL    If 'pevent' is a NULL pointer
*
* Note(s)    : As of V2.60, this function allows you to send NULL pointer messages.
*********************************************************************************************************
*/

#if OS_Q_POST_FRONT_EN > 0
INT8U  OSQPostFront (OS_EVENT *pevent, void *msg)
{
    OS_Q      *pq;
#if OS_CRITICAL_METHOD == 3                           /* Allocate storage for CPU status register      */
    OS_CPU_SR  cpu_sr;



    cpu_sr = 0;                                       /* Prevent compiler warning                      */

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
另类的小说在线视频另类成人小视频在线 | 91精品国产91久久久久久最新毛片| 91精品国产高清一区二区三区| 国产欧美中文在线| 爽好多水快深点欧美视频| 成人福利视频在线| 欧美草草影院在线视频| 一区二区三区在线不卡| 国产精品夜夜嗨| 日韩视频一区在线观看| 亚洲黄色av一区| www.99精品| 欧美国产视频在线| 狠狠久久亚洲欧美| 欧美精品aⅴ在线视频| 亚洲精品国产一区二区精华液| 国产a久久麻豆| 久久亚洲春色中文字幕久久久| 免费高清成人在线| 欧美午夜精品久久久久久孕妇| 亚洲人亚洲人成电影网站色| 成人app下载| 中文字幕av在线一区二区三区| 韩国午夜理伦三级不卡影院| 欧美大片在线观看| 久久99精品久久久| 久久这里只有精品视频网| 老色鬼精品视频在线观看播放| 91精品欧美久久久久久动漫| 午夜精品在线看| 欧美日韩国产影片| 亚洲高清免费视频| 欧美日韩色一区| 丝袜美腿亚洲色图| 在线不卡免费av| 久久国产精品99精品国产| 日韩精品一区二区三区在线播放 | 亚洲人成伊人成综合网小说| 不卡免费追剧大全电视剧网站| 亚洲国产精品成人综合| 国产999精品久久| 最新久久zyz资源站| 在线观看亚洲专区| 首页综合国产亚洲丝袜| 日韩一级黄色大片| 经典三级一区二区| 国产精品美女久久久久久久久久久| 国产.欧美.日韩| 亚洲欧美一区二区三区国产精品| 蜜桃久久久久久久| 国产午夜久久久久| 日本韩国欧美国产| 日韩高清不卡在线| 国产三级精品视频| 91久久精品日日躁夜夜躁欧美| 亚洲第一综合色| 欧美一级欧美一级在线播放| 国产精品资源在线| 一区二区成人在线| 欧美tk—视频vk| av不卡免费在线观看| 亚洲成a人片在线观看中文| 久久日韩精品一区二区五区| 91美女在线观看| 青青草一区二区三区| 国产欧美日韩综合精品一区二区| 日本精品免费观看高清观看| 久久精品国产亚洲aⅴ| 欧美高清在线视频| 欧美精品久久久久久久久老牛影院| 久久精品噜噜噜成人av农村| 国产精品久久福利| 欧美一区午夜精品| 91丝袜呻吟高潮美腿白嫩在线观看| 日本aⅴ亚洲精品中文乱码| 国产精品国产三级国产aⅴ原创 | 色八戒一区二区三区| 蜜臀a∨国产成人精品| 亚洲视频在线一区观看| 日韩午夜在线观看| 色婷婷久久久综合中文字幕| 国产精品一级在线| 亚洲国产日日夜夜| 国产精品沙发午睡系列990531| 91精品福利在线一区二区三区 | 欧美三区在线观看| 黄色小说综合网站| 亚洲国产另类av| 亚洲欧洲精品一区二区精品久久久 | eeuss鲁片一区二区三区| 视频在线观看一区| 一区二区三区在线观看动漫| 国产精品毛片大码女人| 欧美mv和日韩mv的网站| 777xxx欧美| 欧美色手机在线观看| av高清不卡在线| 丁香婷婷综合网| 精品亚洲成a人在线观看| 日韩成人av影视| 亚洲va国产va欧美va观看| 亚洲男人电影天堂| 中文字幕一区二区三区精华液| 精品黑人一区二区三区久久| 在线综合视频播放| 91精品国产综合久久香蕉麻豆| 在线精品视频一区二区| 在线视频国内自拍亚洲视频| 日本大香伊一区二区三区| 一本一本久久a久久精品综合麻豆| 顶级嫩模精品视频在线看| 国产成人免费9x9x人网站视频| 国产在线观看一区二区| 久久精工是国产品牌吗| 免费人成在线不卡| 免费在线观看成人| 美女视频黄 久久| 久久69国产一区二区蜜臀| 捆绑调教一区二区三区| 黑人精品欧美一区二区蜜桃| 精品一区二区在线看| 久久99日本精品| 国产成人综合精品三级| 成人一二三区视频| 99re在线视频这里只有精品| 91久久精品网| 日韩欧美中文字幕公布| 日韩精品自拍偷拍| 国产清纯白嫩初高生在线观看91| 中文一区二区在线观看| 亚洲欧美中日韩| 夜夜嗨av一区二区三区中文字幕| 午夜欧美大尺度福利影院在线看| 日本成人在线视频网站| 国产麻豆日韩欧美久久| 国产91综合网| 欧美亚洲动漫另类| 日韩美女在线视频| 中文字幕av一区二区三区高| 亚洲精品大片www| 蜜桃91丨九色丨蝌蚪91桃色| 国产精品18久久久久久久久 | 91在线视频18| 欧美视频你懂的| 久久众筹精品私拍模特| 亚洲女与黑人做爰| 美腿丝袜一区二区三区| 99久久久久久| 91精品国产综合久久久久| 久久麻豆一区二区| 亚洲欧美另类小说| 久久国产精品免费| 色久优优欧美色久优优| 日韩欧美国产一区二区三区| 一区二区中文视频| 日韩成人精品在线| 一本一道波多野结衣一区二区| 欧美一区二区三区啪啪| 国产精品色哟哟| 免费观看在线色综合| 色综合天天性综合| 日韩精品最新网址| 亚洲小说欧美激情另类| 国产精品一区免费在线观看| 欧美日韩成人综合在线一区二区| 欧美激情一二三区| 免费观看在线综合色| 在线视频国内自拍亚洲视频| 国产日本一区二区| 美脚の诱脚舐め脚责91 | 国产片一区二区三区| 亚洲成av人片在线观看无码| 成人精品高清在线| 日韩欧美激情四射| 亚洲成av人片在线| 91久久奴性调教| 一区二区中文视频| 国产一区二区三区久久久| 在线91免费看| 亚洲线精品一区二区三区| aaa国产一区| 日本一区二区视频在线观看| 激情综合网天天干| 911精品产国品一二三产区| 亚洲一区二区精品视频| av午夜精品一区二区三区| 久久一留热品黄| 精品无码三级在线观看视频| 日韩一区二区在线免费观看| 日本亚洲视频在线| 欧美少妇bbb| 夜夜嗨av一区二区三区四季av | 成人午夜精品一区二区三区| 精品欧美黑人一区二区三区| 日韩av在线发布| 日韩三级电影网址| 美女看a上一区| 亚洲精品在线一区二区| 免费在线看成人av| 日韩免费高清av|