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

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

?? os_q.c

?? ucou-II最婦最全的源文件,里面的文件用英文注解
?? C
?? 第 1 頁 / 共 3 頁
字號:
             }
             break;

        case OS_DEL_ALWAYS:                                /* Always delete the queue                  */
             while (pevent->OSEventGrp != 0) {             /* Ready ALL tasks waiting for queue        */
                 (void)OS_EventTaskRdy(pevent, (void *)0, OS_STAT_Q);
             }
#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 == OS_TRUE) {                  /* Reschedule only if task(s) were waiting  */
                 OS_Sched();                               /* Find highest priority task ready to run  */
             }
             *err                   = OS_NO_ERR;
             pevent_return          = (OS_EVENT *)0;       /* Queue has been deleted                   */
             break;

        default:
             OS_EXIT_CRITICAL();
             *err                   = OS_ERR_INVALID_OPT;
             pevent_return          = pevent;
             break;
    }
    return (pevent_return);
}
#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 = 0;
#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.
*                            OS_ERR_PEND_LOCKED  If you called this function with the scheduler is locked
*
* 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 = 0;
#endif



#if OS_ARG_CHK_EN > 0
    if (err == (INT8U *)0) {                     /* Validate 'err'                                     */
        return ((void *)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
    if (OSIntNesting > 0) {                      /* See if called from ISR ...                         */
        *err = OS_ERR_PEND_ISR;                  /* ... can't PEND from an ISR                         */
        return ((void *)0);
    }
    if (OSLockNesting > 0) {                     /* See if called with scheduler locked ...            */
        *err = OS_ERR_PEND_LOCKED;               /* ... can't PEND when locked                         */
        return ((void *)0);
    }
    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  = OS_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 == OS_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 = 0;
#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 != 0) {                     /* 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.

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
www.激情成人| 国产xxx精品视频大全| 国产精品色在线观看| 日韩美女在线视频| 日韩一区二区三区在线| 欧美一级二级三级乱码| 91精品国产91久久久久久一区二区 | 欧美天天综合网| 91激情五月电影| 欧美性大战xxxxx久久久| 欧美午夜电影在线播放| 日韩1区2区3区| 久草这里只有精品视频| 国内成人精品2018免费看| 国产一区二区免费看| 亚洲日本韩国一区| 亚洲综合视频在线观看| 午夜精品久久久久久不卡8050| 亚洲国产精品一区二区尤物区| 天天综合网 天天综合色| 日韩av中文字幕一区二区| 韩国三级在线一区| 99久久久国产精品| 欧美三级电影在线看| 国产福利一区二区三区| 91天堂素人约啪| 欧美日本一区二区三区四区 | 亚洲小说欧美激情另类| 美女视频一区二区| 岛国一区二区三区| 欧美中文字幕一区二区三区 | 亚洲人精品一区| 日韩二区三区在线观看| 国产一区二区三区久久悠悠色av| 成人av在线播放网址| 欧美视频在线播放| 久久影院午夜片一区| 亚洲欧美日韩中文播放| 蜜臀av亚洲一区中文字幕| 成人激情校园春色| 欧美一区二区日韩| 色婷婷综合久久久久中文一区二区| 欧美电影一区二区三区| 中文一区在线播放| 蜜桃视频一区二区三区| 一本久久a久久精品亚洲| 精品国产91洋老外米糕| 亚洲自拍偷拍av| 欧美性一区二区| 久久久亚洲精品一区二区三区| 亚洲激情在线激情| 国产91精品一区二区| 欧美一区二区三区四区在线观看| 亚洲欧洲在线观看av| 久久激情综合网| 欧美日韩aaaaa| 亚洲综合激情小说| av在线这里只有精品| 成人免费视频国产在线观看| 911精品产国品一二三产区| 亚洲色图色小说| 国产成人夜色高潮福利影视| 欧美日韩成人高清| 亚洲国产日韩综合久久精品| 99久久99久久久精品齐齐| 国产欧美日韩麻豆91| 国产真实乱子伦精品视频| 69p69国产精品| 一二三四区精品视频| 国产视频911| 蜜桃精品视频在线| 欧美一区二区视频在线观看| 亚洲电影欧美电影有声小说| 一本大道久久a久久综合婷婷| 久久久久久久久久久久电影| 精品在线一区二区| 精品久久久三级丝袜| 精品中文字幕一区二区小辣椒| 欧美日本在线看| 日韩精品乱码免费| 欧美剧情片在线观看| 艳妇臀荡乳欲伦亚洲一区| 91久久精品午夜一区二区| 欧美日韩在线播| 日韩av中文字幕一区二区| 欧美一区二区三区成人| 美腿丝袜亚洲综合| 久久青草欧美一区二区三区| 国产高清不卡一区| 中文字幕中文在线不卡住| 成人av资源网站| 一区二区高清视频在线观看| 色狠狠av一区二区三区| 亚洲va欧美va国产va天堂影院| 欧美久久婷婷综合色| 欧美aaa在线| 精品国精品自拍自在线| 国产精品一区二区x88av| 中文字幕乱码日本亚洲一区二区| 一区二区免费在线播放| 日韩一区二区三区电影| 成人午夜短视频| 亚洲已满18点击进入久久| 91精品福利在线一区二区三区| 国模套图日韩精品一区二区| 国产精品欧美久久久久无广告| 91在线观看下载| 日韩成人精品在线观看| 国产欧美日韩久久| 欧美色视频在线观看| 捆绑调教一区二区三区| 中文字幕av不卡| 91麻豆精品国产自产在线 | 亚洲成av人在线观看| 精品国产免费久久| 色国产综合视频| 国产精品一区在线观看乱码| 亚洲精品国产a久久久久久 | 亚洲另类春色校园小说| 日韩免费视频线观看| 99在线精品免费| 久久99精品一区二区三区三区| 亚洲日韩欧美一区二区在线| 精品美女一区二区| 在线看日韩精品电影| 国产精品一二三四五| 日韩精品亚洲专区| 亚洲黄色av一区| 国产日韩欧美麻豆| 制服丝袜亚洲精品中文字幕| 99久久综合99久久综合网站| 久久精品久久综合| 香蕉成人啪国产精品视频综合网| 国产精品视频你懂的| 精品国产一区二区三区不卡 | 成人免费在线视频| 精品精品国产高清一毛片一天堂| 色综合久久久久久久久| 国产suv精品一区二区三区| 蜜臀av一区二区| 日本女人一区二区三区| 亚洲一区在线免费观看| 国产精品福利电影一区二区三区四区 | 国产麻豆精品在线| 久久99最新地址| 免费欧美高清视频| 婷婷一区二区三区| 无码av中文一区二区三区桃花岛| 国产精品久久久久久久久久久免费看 | 5566中文字幕一区二区电影| 日本道免费精品一区二区三区| 99在线视频精品| 99久久综合狠狠综合久久| 波波电影院一区二区三区| 国产成人免费视频一区| 国产高清一区日本| 成人午夜看片网址| 91同城在线观看| 欧美亚洲精品一区| 欧洲亚洲精品在线| 欧美调教femdomvk| 欧美一区二区三区在线电影| 在线成人午夜影院| 欧美xxxxx牲另类人与| 欧美精品一区二区三区在线| 久久影院电视剧免费观看| xf在线a精品一区二区视频网站| 久久影视一区二区| 中文字幕av资源一区| 亚洲私人影院在线观看| 一区二区三区毛片| 美女视频黄免费的久久| 国产一区二区视频在线| 成人午夜激情视频| 欧美在线色视频| 日韩免费电影一区| 国产精品激情偷乱一区二区∴| 亚洲日本成人在线观看| 无吗不卡中文字幕| 国产精品资源在线| 在线视频观看一区| 日韩一级欧美一级| 国产精品久久久久久久岛一牛影视 | 色婷婷av一区二区| 欧美福利视频导航| 国产亚洲精品aa午夜观看| 综合自拍亚洲综合图不卡区| 亚洲国产wwwccc36天堂| 蜜臀久久99精品久久久久宅男| 丰满亚洲少妇av| 欧美私人免费视频| 久久久精品国产99久久精品芒果 | 欧美日韩国产综合久久| 2021中文字幕一区亚洲| 亚洲精品国产精品乱码不99| 久久精品久久精品| 欧美色网站导航| 欧美激情一区三区| 三级精品在线观看| av在线不卡电影|