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

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

?? os_q.c

?? uc/os2.83最新源代碼
?? 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一区二区三区免费野_久草精品视频
中文字幕五月欧美| 在线中文字幕一区| 亚洲免费在线观看| 日韩视频在线永久播放| 丰满放荡岳乱妇91ww| 亚洲午夜久久久久| 中文字幕一区免费在线观看| 日韩免费成人网| 91久久精品网| 成人18视频日本| 国产成人精品网址| 韩国女主播成人在线| 久久超碰97中文字幕| 午夜精品福利在线| 亚洲综合在线观看视频| 自拍偷在线精品自拍偷无码专区| 精品福利在线导航| 欧美日韩国产一二三| 成人激情免费视频| 国产高清视频一区| 国产精品18久久久久| 男女性色大片免费观看一区二区 | 91网址在线看| 国产精品情趣视频| 亚洲精品一区二区三区99| 国产v日产∨综合v精品视频| 国产主播一区二区三区| 国内精品不卡在线| 丁香婷婷综合色啪| av网站一区二区三区| 色香色香欲天天天影视综合网| 色婷婷综合中文久久一本| 色婷婷av一区二区三区gif | 精品综合久久久久久8888| 精品在线播放午夜| 成人一区在线观看| 欧美亚洲国产一区在线观看网站 | 欧美videossexotv100| 久久精品亚洲国产奇米99| **欧美大码日韩| 亚洲a一区二区| 国产专区欧美精品| 91女人视频在线观看| 日韩片之四级片| ...xxx性欧美| 青青草国产精品97视觉盛宴| 国模大尺度一区二区三区| 97久久超碰精品国产| 欧美色涩在线第一页| 精品国产91九色蝌蚪| 一区二区三区精品| 高清成人免费视频| 91麻豆精品国产91久久久久| 国产日产欧美一区二区视频| 亚洲无人区一区| 成人影视亚洲图片在线| 欧美大片国产精品| 亚洲乱码国产乱码精品精小说 | 国产精品福利一区二区| 亚洲色图都市小说| 国产成人免费在线| 欧美一区国产二区| 亚洲美女一区二区三区| 麻豆国产精品一区二区三区| 国产一区二区三区免费看| 日韩欧美在线影院| 亚洲成人精品影院| 欧美日韩在线播放| 亚洲综合一区二区精品导航| 丰满放荡岳乱妇91ww| 国产婷婷一区二区| 日本成人在线一区| 日韩欧美一区二区不卡| 美日韩一区二区| 精品久久一区二区三区| 日本aⅴ免费视频一区二区三区| 欧美日韩和欧美的一区二区| 亚洲一区在线观看网站| 欧美午夜精品一区| 亚洲综合成人在线| 欧美一区二区三区男人的天堂| 日韩精品欧美精品| 久久尤物电影视频在线观看| 国产麻豆欧美日韩一区| 国产精品久久久久一区二区三区共| 亚洲啪啪综合av一区二区三区| 夜夜揉揉日日人人青青一国产精品| 99久久婷婷国产综合精品电影| 国产精品色噜噜| 欧美私人免费视频| 麻豆精品视频在线| 亚洲人妖av一区二区| 8x8x8国产精品| 国产麻豆午夜三级精品| 亚洲综合自拍偷拍| 精品成人免费观看| 欧美影院午夜播放| 国产精品88av| 免费的成人av| 综合激情网...| xnxx国产精品| 欧美日韩高清一区| 91在线视频18| 韩日av一区二区| 亚洲高清不卡在线观看| 国产日韩欧美综合一区| 69久久99精品久久久久婷婷| 成年人网站91| 国产成人夜色高潮福利影视| 日韩影院精彩在线| 亚洲色图20p| 亚洲少妇30p| 国产欧美日韩另类视频免费观看| 欧美精品日韩一区| 成人免费视频一区| 成人一区二区三区在线观看| 开心九九激情九九欧美日韩精美视频电影 | 亚洲精品在线观| 欧美一区二区三区免费大片| 91久久线看在观草草青青| 成人精品高清在线| 国产精品亚洲午夜一区二区三区| 免费在线欧美视频| 天天综合天天综合色| 亚洲欧美色综合| 亚洲一区二区三区自拍| 一区二区三区欧美日| 亚洲综合无码一区二区| 无吗不卡中文字幕| 香蕉久久夜色精品国产使用方法 | 亚洲免费毛片网站| 亚洲777理论| 免费成人在线网站| 国产精品伊人色| 菠萝蜜视频在线观看一区| 国产一二三精品| 国产suv精品一区二区三区| 不卡一区中文字幕| 日本乱人伦aⅴ精品| 欧美理论片在线| 精品国产一区久久| 1024成人网| 久久精品噜噜噜成人88aⅴ| 成人免费福利片| 在线成人高清不卡| 国产精品色婷婷久久58| 午夜视频久久久久久| 粉嫩一区二区三区在线看| 欧美三级中文字幕| 在线成人小视频| 中文成人综合网| 亚洲香蕉伊在人在线观| 久久不见久久见中文字幕免费| 99国产精品视频免费观看| 97久久超碰国产精品| 欧美在线一区二区三区| 久久久影院官网| 日韩专区一卡二卡| 97国产一区二区| 欧美精品一区男女天堂| 欧美一区二区精品| 国产精品一区二区久久不卡| 国产做a爰片久久毛片| 欧美日韩五月天| 中文字幕欧美区| 激情综合网天天干| 91.com视频| 天堂一区二区在线免费观看| 精品一区二区三区在线观看| 在线视频国产一区| 国产精品不卡一区| 精品一区二区三区香蕉蜜桃 | 国产不卡在线一区| 337p粉嫩大胆噜噜噜噜噜91av | 日韩成人精品视频| 4438x成人网最大色成网站| 性欧美疯狂xxxxbbbb| 欧美优质美女网站| 午夜精品一区二区三区电影天堂| 风间由美一区二区av101| 成人免费在线视频| 在线观看视频一区| 亚洲午夜三级在线| 91精品久久久久久蜜臀| 美女尤物国产一区| 久久久久97国产精华液好用吗| 国产精品99久久久久久似苏梦涵 | 午夜精品久久久久久久久久| 欧美无砖专区一中文字| 日韩综合一区二区| 久久网这里都是精品| 国产成人在线观看免费网站| 中文字幕乱码日本亚洲一区二区 | 国产成人综合亚洲91猫咪| 欧美激情一区不卡| 欧美日韩精品一区二区三区四区| 丝袜诱惑亚洲看片| 26uuu亚洲综合色| 色综合天天综合在线视频| 日本美女一区二区三区|