2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2014-12-28 22:03:12 +01:00
|
|
|
* sched/mqueue/mq_waitirq.c
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
2020-03-10 16:26:30 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
2020-03-10 16:26:30 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
2020-03-10 16:26:30 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2007-03-28 16:48:42 +02:00
|
|
|
* Included Files
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2009-12-14 19:39:29 +01:00
|
|
|
#include <nuttx/config.h>
|
|
|
|
|
2007-03-28 16:48:42 +02:00
|
|
|
#include <sched.h>
|
|
|
|
#include <errno.h>
|
2011-08-07 14:58:54 +02:00
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
#include <nuttx/irq.h>
|
2007-03-28 16:48:42 +02:00
|
|
|
#include <nuttx/arch.h>
|
2011-08-07 14:58:54 +02:00
|
|
|
#include <nuttx/mqueue.h>
|
|
|
|
|
2014-08-08 20:31:23 +02:00
|
|
|
#include "mqueue/mqueue.h"
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2007-03-28 16:48:42 +02:00
|
|
|
* Public Functions
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2008-02-01 22:23:19 +01:00
|
|
|
/****************************************************************************
|
2017-10-09 17:06:46 +02:00
|
|
|
* Name: nxmq_wait_irq
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
|
|
|
* Description:
|
2011-09-21 15:28:16 +02:00
|
|
|
* This function is called when a signal or a timeout is received by a
|
|
|
|
* task that is waiting on a message queue -- either for a queue to
|
2017-10-10 17:57:40 +02:00
|
|
|
* becoming not full (on mq_send and friends) or not empty (on mq_receive
|
|
|
|
* and friends).
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
2018-03-13 16:52:27 +01:00
|
|
|
* Input Parameters:
|
2011-08-07 14:58:54 +02:00
|
|
|
* wtcb - A pointer to the TCB of the task that is waiting on a message
|
|
|
|
* queue, but has received a signal instead.
|
2007-03-28 16:48:42 +02:00
|
|
|
*
|
2018-02-01 17:00:02 +01:00
|
|
|
* Returned Value:
|
2007-03-28 16:48:42 +02:00
|
|
|
* None
|
|
|
|
*
|
|
|
|
* Assumptions:
|
|
|
|
*
|
2008-02-01 22:23:19 +01:00
|
|
|
****************************************************************************/
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2017-10-09 17:06:46 +02:00
|
|
|
void nxmq_wait_irq(FAR struct tcb_s *wtcb, int errcode)
|
2007-03-28 16:48:42 +02:00
|
|
|
{
|
2014-09-29 21:19:11 +02:00
|
|
|
FAR struct mqueue_inode_s *msgq;
|
2016-02-14 15:17:46 +01:00
|
|
|
irqstate_t flags;
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2011-08-07 14:58:54 +02:00
|
|
|
/* Disable interrupts. This is necessary because an interrupt handler may
|
|
|
|
* attempt to send a message while we are doing this.
|
2007-03-28 16:48:42 +02:00
|
|
|
*/
|
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
flags = enter_critical_section();
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2011-08-07 14:58:54 +02:00
|
|
|
/* It is possible that an interrupt/context switch beat us to the punch and
|
|
|
|
* already changed the task's state. NOTE: The operations within the if
|
|
|
|
* are safe because interrupts are always disabled with the msgwaitq,
|
|
|
|
* nwaitnotempty, and nwaitnotfull fields are modified.
|
2007-03-28 16:48:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
if (wtcb->task_state == TSTATE_WAIT_MQNOTEMPTY ||
|
|
|
|
wtcb->task_state == TSTATE_WAIT_MQNOTFULL)
|
|
|
|
{
|
2011-08-07 14:58:54 +02:00
|
|
|
/* Get the message queue associated with the waiter from the TCB */
|
|
|
|
|
|
|
|
msgq = wtcb->msgwaitq;
|
2013-04-25 23:19:59 +02:00
|
|
|
DEBUGASSERT(msgq);
|
2011-08-07 14:58:54 +02:00
|
|
|
|
|
|
|
wtcb->msgwaitq = NULL;
|
|
|
|
|
|
|
|
/* Decrement the count of waiters and cancel the wait */
|
|
|
|
|
|
|
|
if (wtcb->task_state == TSTATE_WAIT_MQNOTEMPTY)
|
|
|
|
{
|
2013-04-25 23:19:59 +02:00
|
|
|
DEBUGASSERT(msgq->nwaitnotempty > 0);
|
2011-08-07 14:58:54 +02:00
|
|
|
msgq->nwaitnotempty--;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2013-04-25 23:19:59 +02:00
|
|
|
DEBUGASSERT(msgq->nwaitnotfull > 0);
|
2011-08-07 14:58:54 +02:00
|
|
|
msgq->nwaitnotfull--;
|
|
|
|
}
|
|
|
|
|
2020-05-07 22:15:09 +02:00
|
|
|
/* Mark the error value for the thread. */
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2020-05-07 22:15:09 +02:00
|
|
|
wtcb->errcode = errcode;
|
2007-03-28 16:48:42 +02:00
|
|
|
|
2009-06-25 19:44:35 +02:00
|
|
|
/* Restart the task. */
|
2007-03-28 16:48:42 +02:00
|
|
|
|
|
|
|
up_unblock_task(wtcb);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Interrupts may now be enabled. */
|
|
|
|
|
2016-02-14 15:17:46 +01:00
|
|
|
leave_critical_section(flags);
|
2007-03-28 16:48:42 +02:00
|
|
|
}
|