mirror of
https://github.com/apache/nuttx.git
synced 2026-08-21 13:38:28 +00:00
POSIX leaves the signedness of time_t and clock_t unspecified, but
mainstream implementations (Linux glibc/musl, the BSDs, macOS, RTEMS,
Zephyr's POSIX layer, Windows _time64) expose time_t as signed 64-bit.
NuttX has historically used uint64_t only because it was tied to the
CONFIG_SYSTEM_TIME64 knob; with that gone, switch:
time_t : uint64_t -> int64_t
clock_t : uint64_t -> int64_t
CLOCK_MAX: UINT64_MAX -> INT64_MAX
This lets (time_t)-1 sentinels, negative tick deltas, and host-side
headers behave as on every other POSIX system without source churn.
Headers updated:
- include/sys/types.h, include/limits.h, include/nuttx/clock.h
- include/nuttx/fs/hostfs.h (nuttx_time_t alias)
- include/nuttx/{mqueue.h,wdog.h,wqueue.h,timers/clkcnt.h}
Because clock_t is now signed 64-bit, the NuttX-internal sclock_t
alias becomes redundant: every sclock_t/SCLOCK_MAX use is folded
back to clock_t/CLOCK_MAX (notably in sched/wdog, sched/mqueue,
sched/sched, sched/clock, sched/timer, libs/libc/time, fs/vfs and
the drivers/arch consumers below).
Tick/period constants (NSEC_PER_SEC, USEC_PER_SEC, MSEC_PER_SEC,
SEC_PER_MIN, ...) in include/nuttx/clock.h are retyped from "long"
literals to INT64_C(...) so that 64-bit arithmetic no longer
depends on the host's long width.
Strip now-redundant (time_t)/(clock_t)/(unsigned long) casts and
unsigned-only branches across the tree:
- arch RTC / oneshot / tickless lowerhalfs:
arm: cxd56xx, efm32, imxrt, lc823450, max326xx, sam34, sama5,
samd5e5, samv7, stm32, stm32f7, stm32h7, stm32l4, stm32wb,
xmc4
mips: pic32mz sparc: bm3803 x86_64: intel64
risc-v/xtensa: espressif (esp_i2c[_slave], esp_rtc,
esp32c3{_i2c,_rtc,_wifi_adapter}, esp32{,s2,s3}_*),
mpfs_perf
- drivers: audio/tone, input/aw86225, power/pm/{activity,
stability}_governor, rpmsg/rpmsg_ping,
timers/{ds3231,mcp794xx,pcf85263,rx8010},
wireless/ieee80211/bcm43xxx, wireless/spirit/spirit_spi
- core: fs/vfs/{fs_poll,fs_timerfd}, mm/iob/iob_alloc,
libs/libc/{netdb/lib_dnscache,time/{lib_calendar2utc,
lib_time}}, net/icmp/icmp_pmtu, net/icmpv6/icmpv6_pmtu,
net/ipfrag, net/tcp/{tcp.h,tcp_timer},
net/utils/net_snoop, net/mld/mld_query (drop the now-dead
mld_mrc2mrd helper since signed math handles it directly),
sched/clock/{clock,clock_initialize},
sched/sched/{sched_profil,sched_setparam,sched_setscheduler},
sched/pthread/pthread_create,
sched/wdog/{wd_gettime,wd_start,wdog.h},
sched/timer/timer_gettime, sched/mqueue/*
Flip the few in-tree printf format strings that assumed an
unsigned 64-bit tv_sec:
* drivers/rpmsg/rpmsg_ping.c PRIu64 -> PRId64
* arch/xtensa/src/esp32{,s2,s3}/esp32*_oneshot_lowerhalf.c
PRIu32 (already wrong) -> PRId64
Signed-off-by: Xiang Xiao <xiaoxiang@xiaomi.com>
273 lines
8 KiB
C
273 lines
8 KiB
C
/****************************************************************************
|
|
* sched/mqueue/mq_rcvinternal.c
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* 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
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
#include <stdbool.h>
|
|
#include <sys/types.h>
|
|
#include <fcntl.h>
|
|
#include <string.h>
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <mqueue.h>
|
|
#include <sched.h>
|
|
|
|
#include <nuttx/debug.h>
|
|
#include <nuttx/irq.h>
|
|
#include <nuttx/arch.h>
|
|
#include <nuttx/cancelpt.h>
|
|
|
|
#include "sched/sched.h"
|
|
#include "mqueue/mqueue.h"
|
|
|
|
/****************************************************************************
|
|
* Private Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: nxmq_rcvtimeout
|
|
*
|
|
* Description:
|
|
* This function is called if the timeout elapses before the message queue
|
|
* becomes non-empty.
|
|
*
|
|
* Input Parameters:
|
|
* arg - the argument provided when the timeout was configured.
|
|
*
|
|
* Returned Value:
|
|
* None
|
|
*
|
|
* Assumptions:
|
|
*
|
|
****************************************************************************/
|
|
|
|
static void nxmq_rcvtimeout(wdparm_t arg)
|
|
{
|
|
FAR struct tcb_s *wtcb = (FAR struct tcb_s *)(uintptr_t)arg;
|
|
irqstate_t flags;
|
|
|
|
/* Disable interrupts. This is necessary because an interrupt handler may
|
|
* attempt to send a message while we are doing this.
|
|
*/
|
|
|
|
flags = enter_critical_section();
|
|
|
|
/* It is also possible that an interrupt/context switch beat us to the
|
|
* punch and already changed the task's state.
|
|
*/
|
|
|
|
if (wtcb->task_state == TSTATE_WAIT_MQNOTEMPTY)
|
|
{
|
|
/* Restart with task with a timeout error */
|
|
|
|
nxmq_wait_irq(wtcb, ETIMEDOUT);
|
|
}
|
|
|
|
/* Interrupts may now be re-enabled. */
|
|
|
|
leave_critical_section(flags);
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Public Functions
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: nxmq_wait_receive
|
|
*
|
|
* Description:
|
|
* This is internal, common logic shared by both [nx]mq_receive and
|
|
* [nx]mq_timedreceive. This function waits for a message to be received
|
|
* on the specified message queue, removes the message from the queue, and
|
|
* returns it.
|
|
*
|
|
* Input Parameters:
|
|
* msgq - Message queue descriptor
|
|
* rcvmsg - The caller-provided location in which to return the newly
|
|
* received message.
|
|
* abstime - If non-NULL, this is the absolute time to wait until a
|
|
* message is received.
|
|
*
|
|
* Returned Value:
|
|
* On success, zero (OK) is returned. A negated errno value is returned
|
|
* on any failure.
|
|
*
|
|
* Assumptions:
|
|
* - The caller has provided all validity checking of the input parameters
|
|
* using nxmq_verify_receive.
|
|
* - Interrupts should be disabled throughout this call. This is necessary
|
|
* because messages can be sent from interrupt level processing.
|
|
* - For mq_timedreceive, setting of the timer and this wait must be atomic.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int nxmq_wait_receive(FAR struct mqueue_inode_s *msgq,
|
|
FAR struct mqueue_msg_s **rcvmsg,
|
|
FAR const struct timespec *abstime,
|
|
clock_t ticks)
|
|
{
|
|
FAR struct mqueue_msg_s *newmsg;
|
|
FAR struct tcb_s *rtcb = this_task();
|
|
|
|
#ifdef CONFIG_CANCELLATION_POINTS
|
|
/* nxmq_wait_receive() is not a cancellation point, but it may be called
|
|
* from mq_receive() or mq_timedreceive() which are cancellation point.
|
|
*/
|
|
|
|
if (check_cancellation_point())
|
|
{
|
|
/* If there is a pending cancellation, then do not perform
|
|
* the wait. Exit now with ECANCELED.
|
|
*/
|
|
|
|
return -ECANCELED;
|
|
}
|
|
#endif
|
|
|
|
if (abstime)
|
|
{
|
|
wd_start_realtime(&rtcb->waitdog, abstime,
|
|
nxmq_rcvtimeout, (wdparm_t)rtcb);
|
|
}
|
|
else if (ticks >= 0)
|
|
{
|
|
wd_start(&rtcb->waitdog, ticks,
|
|
nxmq_rcvtimeout, (wdparm_t)rtcb);
|
|
}
|
|
|
|
/* Get the message from the head of the queue */
|
|
|
|
while ((newmsg = (FAR struct mqueue_msg_s *)
|
|
list_remove_head(&msgq->msglist)) == NULL)
|
|
{
|
|
msgq->cmn.nwaitnotempty++;
|
|
|
|
/* Initialize the 'errcode" used to communication wake-up error
|
|
* conditions.
|
|
*/
|
|
|
|
rtcb->waitobj = msgq;
|
|
rtcb->errcode = OK;
|
|
|
|
/* Remove the tcb task from the running list. */
|
|
|
|
nxsched_remove_self(rtcb);
|
|
|
|
/* Add the task to the specified blocked task list */
|
|
|
|
rtcb->task_state = TSTATE_WAIT_MQNOTEMPTY;
|
|
nxsched_add_prioritized(rtcb, MQ_WNELIST(msgq->cmn));
|
|
|
|
/* Now, perform the context switch */
|
|
|
|
up_switch_context(this_task(), rtcb);
|
|
|
|
/* When we resume at this point, either (1) the message queue
|
|
* is no longer empty, or (2) the wait has been interrupted by
|
|
* a signal. We can detect the latter case be examining the
|
|
* errno value (should be either EINTR or ETIMEDOUT).
|
|
*/
|
|
|
|
if (rtcb->errcode != OK)
|
|
{
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (abstime || ticks >= 0)
|
|
{
|
|
wd_cancel(&rtcb->waitdog);
|
|
}
|
|
|
|
*rcvmsg = newmsg;
|
|
return -rtcb->errcode;
|
|
}
|
|
|
|
/****************************************************************************
|
|
* Name: nxmq_notify_receive
|
|
*
|
|
* Description:
|
|
* This is internal, common logic shared by both [nx]mq_receive and
|
|
* [nx]mq_timedreceive.
|
|
* This function notifies any tasks that are waiting for the message queue
|
|
* to become non-empty. This function is called after a message is
|
|
* received from the message queue.
|
|
*
|
|
* Input Parameters:
|
|
* msgq - Message queue descriptor
|
|
*
|
|
* Returned Value:
|
|
* Returns the length of the received message. This function does not
|
|
* fail.
|
|
*
|
|
* Assumptions:
|
|
* - Pre-emption should be disabled throughout this call.
|
|
*
|
|
****************************************************************************/
|
|
|
|
void nxmq_notify_receive(FAR struct mqueue_inode_s *msgq)
|
|
{
|
|
FAR struct tcb_s *btcb;
|
|
|
|
/* Check if any tasks are waiting for the MQ not full event. */
|
|
|
|
if (msgq->cmn.nwaitnotfull > 0)
|
|
{
|
|
FAR struct tcb_s *rtcb = this_task();
|
|
|
|
/* Find the highest priority task that is waiting for
|
|
* this queue to be not-full in waitfornotfull list.
|
|
* This must be performed in a critical section because
|
|
* messages can be sent from interrupt handlers.
|
|
*/
|
|
|
|
btcb = (FAR struct tcb_s *)dq_remfirst(MQ_WNFLIST(msgq->cmn));
|
|
|
|
/* If one was found, unblock it. NOTE: There is a race
|
|
* condition here: the queue might be full again by the
|
|
* time the task is unblocked
|
|
*/
|
|
|
|
DEBUGASSERT(btcb != NULL);
|
|
|
|
wd_cancel(&btcb->waitdog);
|
|
|
|
msgq->cmn.nwaitnotfull--;
|
|
|
|
/* Indicate that the wait is over. */
|
|
|
|
btcb->waitobj = NULL;
|
|
|
|
/* Add the task to ready-to-run task list and
|
|
* perform the context switch if one is needed
|
|
*/
|
|
|
|
if (nxsched_add_readytorun(btcb))
|
|
{
|
|
up_switch_context(this_task(), rtcb);
|
|
}
|
|
}
|
|
}
|