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

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

?? os_q.c

?? mega128-ucos285-gcc-avrstdio可以和proteus7.4sp3一起仿真的好東西
?? C
?? 第 1 頁(yè) / 共 3 頁(yè)
字號(hào):
#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                      */

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国内精品久久久久影院薰衣草| 美女脱光内衣内裤视频久久网站| 国产农村妇女毛片精品久久麻豆| 欧美国产一区二区| 激情文学综合丁香| 日本精品一区二区三区高清| 91蝌蚪porny| 欧美xxxxxxxxx| 亚洲欧美激情一区二区| 日本午夜一区二区| 97久久精品人人做人人爽50路 | 在线观看一区二区精品视频| 欧美mv和日韩mv国产网站| 亚洲免费在线视频一区 二区| 日本视频在线一区| 91网站在线观看视频| 欧美一区二区女人| 亚洲另类色综合网站| 成人午夜在线播放| 日韩欧美一区二区免费| 日韩理论电影院| 国产成人av福利| 日韩一区二区不卡| 亚洲成年人影院| 欧美三级一区二区| 亚洲激情男女视频| 91在线观看地址| 18涩涩午夜精品.www| 国产电影精品久久禁18| 欧美成人猛片aaaaaaa| 毛片av一区二区三区| 日韩一区二区精品在线观看| 日韩成人午夜精品| 欧美三级电影网| 亚洲综合图片区| 在线播放欧美女士性生活| 亚洲一线二线三线久久久| 欧美亚洲一区二区三区四区| 亚洲成人自拍一区| 日韩一二三四区| 国内成人精品2018免费看| 精品久久一区二区三区| 国产xxx精品视频大全| 亚洲免费av在线| 欧美成人福利视频| 91小视频免费观看| 亚洲国产成人91porn| 精品黑人一区二区三区久久| 日本一区中文字幕| 国产天堂亚洲国产碰碰| 99国产精品久久久久久久久久| 一区二区三区四区中文字幕| 日韩免费观看高清完整版 | 日韩欧美一级二级| 一本色道亚洲精品aⅴ| 日韩国产在线观看一区| 国产精品午夜免费| 日韩欧美一级特黄在线播放| 99国产精品国产精品毛片| 奇米综合一区二区三区精品视频| 久久久一区二区三区| 欧美日韩在线三区| 99久久免费视频.com| 欧美bbbbb| 亚洲精品高清在线| 精品国产成人在线影院 | 亚洲国产精品久久不卡毛片 | 天天色天天爱天天射综合| 欧美国产视频在线| 国产日韩精品一区二区浪潮av| 91精品国产日韩91久久久久久| 91免费观看视频在线| 国产.欧美.日韩| 国产精品1区2区| 国产一区二区导航在线播放| 麻豆91精品视频| 久久国产精品一区二区| 日本成人在线看| 免费成人av在线播放| 免费欧美在线视频| 国产原创一区二区| 成人午夜大片免费观看| 成人aa视频在线观看| 欧美在线短视频| 欧美精品v日韩精品v韩国精品v| 欧美性淫爽ww久久久久无| 欧美午夜影院一区| 欧美一区二区三区的| 欧美一区二区高清| 国产欧美精品一区二区色综合朱莉 | 色美美综合视频| 日韩一区二区电影| 亚洲国产电影在线观看| 亚洲精品成人悠悠色影视| 亚洲大型综合色站| 国产美女主播视频一区| 色嗨嗨av一区二区三区| 欧美日韩国产综合草草| 久久婷婷一区二区三区| 亚洲黄色小说网站| 青椒成人免费视频| 91丝袜美腿高跟国产极品老师| 欧美日韩五月天| 欧美激情中文不卡| 蜜臀91精品一区二区三区 | 亚洲色图一区二区| 国产在线不卡一区| 欧美日韩黄色影视| 亚洲靠逼com| 在线不卡免费欧美| 日韩欧美国产三级电影视频| 免费观看在线色综合| 欧美性一级生活| 欧美乱熟臀69xxxxxx| 亚洲欧美成人一区二区三区| 欧美伊人精品成人久久综合97 | 欧美精品一区二区三区在线播放| 一区二区三区视频在线观看| 日产欧产美韩系列久久99| 中文字幕av资源一区| 久久久久久久久久电影| 欧美一级欧美一级在线播放| 欧美日韩精品高清| 91精品国产乱码| 成人av电影在线网| 麻豆精品一区二区综合av| 亚洲一区在线观看视频| 久久精品亚洲精品国产欧美| 欧美亚洲国产一区在线观看网站| 精品一区二区国语对白| 亚洲第一福利视频在线| 中文字幕免费观看一区| 欧美电视剧在线看免费| 欧美一区二区成人| 色婷婷av一区二区三区软件| 国产一区在线精品| 免费成人你懂的| 日本中文字幕一区二区有限公司| 亚洲黄色小说网站| 亚洲免费在线观看视频| 久久久久久久久久久99999| 欧美电影免费观看高清完整版在线| 日韩欧美高清在线| 国产精品免费网站在线观看| 国产精品婷婷午夜在线观看| 久久久精品蜜桃| 国产视频亚洲色图| 国产人成一区二区三区影院| www欧美成人18+| 国产三级精品三级在线专区| 久久精品一区二区三区四区| 欧美国产日本韩| 一区二区三区美女视频| 一区二区三区不卡在线观看 | 韩国视频一区二区| 精品一二三四区| 国产成人福利片| 91国在线观看| 精品久久免费看| 亚洲美女屁股眼交| 开心九九激情九九欧美日韩精美视频电影| 激情六月婷婷久久| 欧美日韩国产在线观看| 欧美极品美女视频| 日韩中文字幕91| 欧美日韩中字一区| 91亚洲精品乱码久久久久久蜜桃| 日韩精品电影在线观看| 经典三级在线一区| 26uuu精品一区二区在线观看| 六月丁香综合在线视频| 欧美tickle裸体挠脚心vk| 久久99蜜桃精品| 精品国产凹凸成av人网站| 国产一区二区0| 国产婷婷一区二区| 国产大陆亚洲精品国产| 久久综合九色综合97婷婷 | 亚洲第一狼人社区| 91在线观看免费视频| 国产精品美女久久福利网站 | 天天亚洲美女在线视频| 日本久久电影网| 一区二区三区精品在线| 色综合天天综合网天天狠天天| 久久久久久久久99精品| 麻豆精品在线视频| 日韩精品一区二区三区中文精品| 亚洲综合色噜噜狠狠| 在线观看不卡一区| 亚洲精品国产一区二区三区四区在线| 国产乱子伦视频一区二区三区| 日韩一区二区三区电影在线观看| 美脚の诱脚舐め脚责91| 亚洲精品一区二区三区精华液 | 国产精品自拍在线| 国产精品免费aⅴ片在线观看| 在线精品国精品国产尤物884a| 日韩国产精品久久久| 有坂深雪av一区二区精品|