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

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

?? os_q.c

?? UCOS2.83移植的s3c44b0x的最終版,如果那為燒友有好的建議請EMAIL我,不勝感激!
?? 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一区二区三区免费野_久草精品视频
51精品久久久久久久蜜臀| 日韩 欧美一区二区三区| 高清不卡在线观看| 亚洲国产精品ⅴa在线观看| 国产成人精品aa毛片| 国产精品久久毛片| 91偷拍与自偷拍精品| 亚洲欧美日韩综合aⅴ视频| 日本韩国欧美一区二区三区| 亚洲一区av在线| 91精品国产麻豆| 久久超碰97中文字幕| 国产欧美精品区一区二区三区 | 亚洲国产视频直播| 欧美国产日韩a欧美在线观看 | 丝袜美腿亚洲一区| 日韩欧美国产1| 成人精品一区二区三区中文字幕| 国产精品家庭影院| 欧美精品欧美精品系列| 狠狠色丁香久久婷婷综| 亚洲欧美在线观看| 69精品人人人人| 国产成人精品免费看| 亚洲线精品一区二区三区| 精品国产91洋老外米糕| www..com久久爱| 午夜av一区二区三区| 欧美国产激情一区二区三区蜜月| 色综合久久久久久久久| 视频一区二区不卡| 国产欧美视频一区二区| 欧美性猛交xxxx黑人交| 国产在线国偷精品免费看| 综合欧美亚洲日本| 欧美大胆人体bbbb| 在线观看欧美黄色| 国产精品综合网| 亚洲午夜国产一区99re久久| 久久久99久久| 欧美精三区欧美精三区 | bt7086福利一区国产| 日韩制服丝袜av| 亚洲天天做日日做天天谢日日欢 | 亚洲一区在线观看免费 | 欧美人狂配大交3d怪物一区| 国产一区二区三区四区五区美女| 一区二区三区精品| 国产日韩v精品一区二区| 欧美一区二区黄色| 在线一区二区视频| 不卡一区在线观看| 国产精品12区| 美国三级日本三级久久99| 亚洲永久精品国产| 亚洲欧美一区二区在线观看| 久久综合精品国产一区二区三区 | 激情五月婷婷综合| 亚洲第一福利视频在线| 综合欧美亚洲日本| 欧美韩国日本不卡| 久久久亚洲高清| 日韩一级完整毛片| 欧美福利一区二区| 欧美亚一区二区| 在线观看国产91| 亚洲国产成人一区二区三区| 欧美mv日韩mv国产网站| 69av一区二区三区| 制服丝袜亚洲色图| 欧美美女一区二区三区| 欧美日韩免费视频| 欧美理论电影在线| 欧美一区二区三区四区久久| 欧美日韩免费在线视频| 欧美三级韩国三级日本一级| 91传媒视频在线播放| 99re66热这里只有精品3直播| 国产精品一卡二卡| 久草在线在线精品观看| 国内精品伊人久久久久av一坑 | 一本色道久久加勒比精品| 国产成人亚洲综合a∨猫咪| 国产精品一区二区你懂的| 国产一区二区三区av电影 | 国产麻豆精品在线| 精品在线播放免费| 国产一区二区久久| 高清免费成人av| 91麻豆视频网站| 欧美自拍丝袜亚洲| 欧美视频在线一区| 欧美一区二区精美| 日韩三级.com| 精品成人在线观看| 久久精品视频在线看| 国产精品亲子乱子伦xxxx裸| 18成人在线观看| 亚洲色图制服诱惑| 视频一区二区三区入口| 免费成人你懂的| 国产剧情一区二区| 国产精品12区| 欧美性受极品xxxx喷水| 精品视频在线免费观看| 日韩视频国产视频| 精品国产乱码久久久久久老虎| 久久精品亚洲麻豆av一区二区 | 日韩综合小视频| 九九九精品视频| 成人网在线播放| 欧美精品tushy高清| 精品国产成人在线影院| 日韩免费高清电影| 欧美国产国产综合| 亚洲欧美激情视频在线观看一区二区三区 | 精品国产免费一区二区三区四区 | 日韩欧美第一区| 国产精品久久久久久久久晋中| 亚洲视频一区二区免费在线观看| 秋霞午夜鲁丝一区二区老狼| 国产精品一区二区黑丝| 国产精品伦理在线| 亚洲一卡二卡三卡四卡无卡久久| 久久精品国产999大香线蕉| 国产高清在线精品| 欧美视频一区在线观看| 欧美一区日本一区韩国一区| 欧美激情一区二区三区四区| 亚洲精品少妇30p| 久久9热精品视频| 在线精品视频免费观看| 久久综合色综合88| 亚洲成人激情自拍| 国产成人精品一区二区三区四区 | 国内久久精品视频| 欧美亚洲免费在线一区| 日韩一区二区免费高清| 亚洲三级小视频| 极品少妇xxxx精品少妇偷拍| 欧美午夜不卡视频| 欧美精品一区二区三区高清aⅴ| 夜夜精品视频一区二区| 国产麻豆午夜三级精品| 欧美成人免费网站| 亚洲日本在线a| 成人免费视频一区| 欧美一区二区三区人| 午夜一区二区三区在线观看| 成人一区二区三区在线观看 | 国产精品影音先锋| 欧美日韩精品一区二区天天拍小说 | 国产99久久精品| 精品国产乱码久久久久久免费| 综合婷婷亚洲小说| 国产成人av资源| 久久综合av免费| 麻豆国产精品视频| 日韩亚洲欧美成人一区| 亚洲精品日韩一| 色婷婷av一区二区三区软件| 中文字幕一区在线观看视频| 国产精品一二三| 久久久亚洲综合| 美女视频黄久久| 日韩欧美国产精品一区| 日韩av网站在线观看| 欧美日韩一级二级| 一区二区三国产精华液| 欧美亚洲一区二区在线观看| 中文字幕日本乱码精品影院| 国产成人啪午夜精品网站男同| 欧美韩国日本不卡| 国产99一区视频免费| 国产午夜一区二区三区| 国产精品一区二区你懂的| 精品女同一区二区| 久久精品国产在热久久| 91精品国产免费| 亚洲地区一二三色| 欧美怡红院视频| 亚洲国产视频一区| 日韩午夜在线影院| 捆绑变态av一区二区三区| 欧美一区二区三区电影| 精久久久久久久久久久| 26uuu精品一区二区| 欧美日韩国产中文| 午夜精品福利一区二区蜜股av| 欧美一卡二卡三卡| 久久99久久久久| 久久久噜噜噜久久人人看| 成人avav影音| 亚洲精品国产a| 欧美猛男男办公室激情| 日本欧美肥老太交大片| 国产亚洲精品7777| 91免费看视频| 亚洲成人一区在线| 日韩欧美一级特黄在线播放|