2008-01-31 05:59:12 +08:00
|
|
|
/****************************************************************************
|
2020-07-27 13:46:03 +08:00
|
|
|
* sched/pthread/pthread_condclockwait.c
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2024-09-11 19:45:11 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*
|
2020-04-06 06:33:44 +08: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-02-18 07:21:28 +08:00
|
|
|
*
|
2020-04-06 06:33:44 +08:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2020-04-06 06:33:44 +08: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-02-18 07:21:28 +08:00
|
|
|
*
|
2008-01-31 05:59:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-01-31 05:59:12 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Included Files
|
2008-01-31 05:59:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2009-12-15 02:39:29 +08:00
|
|
|
#include <nuttx/config.h>
|
2007-02-28 05:17:21 +08:00
|
|
|
#include <nuttx/compiler.h>
|
2009-12-15 02:39:29 +08:00
|
|
|
|
2009-12-15 03:30:18 +08:00
|
|
|
#include <stdint.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <pthread.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <time.h>
|
|
|
|
#include <errno.h>
|
2013-02-06 23:43:28 +08:00
|
|
|
#include <assert.h>
|
2007-02-18 07:21:28 +08:00
|
|
|
#include <debug.h>
|
2009-12-15 03:30:18 +08:00
|
|
|
|
2016-02-14 22:17:46 +08:00
|
|
|
#include <nuttx/irq.h>
|
2014-08-22 01:16:55 +08:00
|
|
|
#include <nuttx/wdog.h>
|
2017-10-08 00:57:09 +08:00
|
|
|
#include <nuttx/signal.h>
|
2016-12-10 23:08:26 +08:00
|
|
|
#include <nuttx/cancelpt.h>
|
2014-08-22 01:16:55 +08:00
|
|
|
|
2014-08-09 07:53:55 +08:00
|
|
|
#include "sched/sched.h"
|
2014-08-09 02:55:02 +08:00
|
|
|
#include "pthread/pthread.h"
|
2014-08-09 04:43:02 +08:00
|
|
|
#include "clock/clock.h"
|
2014-08-09 02:44:44 +08:00
|
|
|
#include "signal/signal.h"
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-01-31 05:59:12 +08:00
|
|
|
/****************************************************************************
|
2007-02-18 07:21:28 +08:00
|
|
|
* Public Functions
|
2008-01-31 05:59:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2008-01-31 05:59:12 +08:00
|
|
|
/****************************************************************************
|
2020-07-27 13:46:03 +08:00
|
|
|
* Name: pthread_cond_clockwait
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* A thread can perform a timed wait on a condition variable.
|
|
|
|
*
|
2018-03-13 23:52:27 +08:00
|
|
|
* Input Parameters:
|
2020-07-27 13:46:03 +08:00
|
|
|
* cond - the condition variable to wait on
|
2007-02-28 05:17:21 +08:00
|
|
|
* mutex - the mutex that protects the condition variable
|
2020-07-27 13:46:03 +08:00
|
|
|
* clockid - The timing source to use in the conversion
|
2007-02-28 05:17:21 +08:00
|
|
|
* abstime - wait until this absolute time
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2018-02-02 00:00:02 +08:00
|
|
|
* Returned Value:
|
2017-03-27 01:22:17 +08:00
|
|
|
* OK (0) on success; A non-zero errno value is returned on failure.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
|
|
|
* Assumptions:
|
2017-03-27 01:22:17 +08:00
|
|
|
* Timing is of resolution 1 msec, with +/-1 millisecond accuracy.
|
2007-02-18 07:21:28 +08:00
|
|
|
*
|
2008-01-31 05:59:12 +08:00
|
|
|
****************************************************************************/
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-07-27 13:46:03 +08:00
|
|
|
int pthread_cond_clockwait(FAR pthread_cond_t *cond,
|
2020-04-06 06:33:44 +08:00
|
|
|
FAR pthread_mutex_t *mutex,
|
2020-07-27 13:46:03 +08:00
|
|
|
clockid_t clockid,
|
2008-01-31 05:59:12 +08:00
|
|
|
FAR const struct timespec *abstime)
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
2021-12-09 15:08:01 +08:00
|
|
|
irqstate_t flags;
|
2013-02-06 23:43:28 +08:00
|
|
|
int ret = OK;
|
|
|
|
int status;
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2022-07-01 01:34:24 +08:00
|
|
|
sinfo("cond=%p mutex=%p abstime=%p\n", cond, mutex, abstime);
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2020-07-27 13:46:03 +08:00
|
|
|
/* pthread_cond_clockwait() is a cancellation point */
|
2016-12-10 06:50:34 +08:00
|
|
|
|
2020-01-03 00:49:34 +08:00
|
|
|
enter_cancellation_point();
|
2016-12-10 06:50:34 +08:00
|
|
|
|
2007-02-18 07:21:28 +08:00
|
|
|
/* Make sure that non-NULL references were provided. */
|
|
|
|
|
|
|
|
if (!cond || !mutex)
|
|
|
|
{
|
|
|
|
ret = EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Make sure that the caller holds the mutex */
|
|
|
|
|
2024-07-04 16:59:57 +08:00
|
|
|
else if (!mutex_is_hold(&mutex->mutex))
|
2007-02-18 07:21:28 +08:00
|
|
|
{
|
|
|
|
ret = EPERM;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If no wait time is provided, this function degenerates to
|
|
|
|
* the same behavior as pthread_cond_wait().
|
|
|
|
*/
|
|
|
|
|
|
|
|
else if (!abstime)
|
|
|
|
{
|
|
|
|
ret = pthread_cond_wait(cond, mutex);
|
|
|
|
}
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
2024-07-04 16:59:57 +08:00
|
|
|
unsigned int nlocks;
|
2022-04-11 11:57:52 +08:00
|
|
|
|
2020-08-04 18:31:31 +08:00
|
|
|
sinfo("Give up mutex...\n");
|
|
|
|
|
2021-12-09 15:08:01 +08:00
|
|
|
/* We must disable pre-emption and interrupts here so that
|
|
|
|
* the time stays valid until the wait begins. This adds
|
|
|
|
* complexity because we assure that interrupts and
|
|
|
|
* pre-emption are re-enabled correctly.
|
2020-08-04 18:31:31 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
sched_lock();
|
2021-12-09 15:08:01 +08:00
|
|
|
flags = enter_critical_section();
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2022-04-11 11:57:52 +08:00
|
|
|
/* Give up the mutex */
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2024-07-04 16:59:57 +08:00
|
|
|
ret = pthread_mutex_breaklock(mutex, &nlocks);
|
2022-04-11 11:57:52 +08:00
|
|
|
if (ret == 0)
|
|
|
|
{
|
2023-03-21 20:44:47 +08:00
|
|
|
status = nxsem_clockwait_uninterruptible(&cond->sem,
|
|
|
|
clockid, abstime);
|
2022-04-11 11:57:52 +08:00
|
|
|
if (status < 0)
|
|
|
|
{
|
|
|
|
ret = -status;
|
|
|
|
}
|
|
|
|
}
|
2021-12-09 15:08:01 +08:00
|
|
|
|
2022-04-11 11:57:52 +08:00
|
|
|
/* Restore interrupts (pre-emption will be enabled
|
|
|
|
* when we fall through the if/then/else)
|
|
|
|
*/
|
2021-12-09 15:08:01 +08:00
|
|
|
|
2022-04-11 11:57:52 +08:00
|
|
|
leave_critical_section(flags);
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2022-04-11 11:57:52 +08:00
|
|
|
/* Reacquire the mutex (retaining the ret). */
|
2007-02-18 07:21:28 +08:00
|
|
|
|
2022-04-11 11:57:52 +08:00
|
|
|
sinfo("Re-locking...\n");
|
2017-04-12 01:03:25 +08:00
|
|
|
|
2024-07-04 16:59:57 +08:00
|
|
|
status = pthread_mutex_restorelock(mutex, nlocks);
|
|
|
|
if (ret == 0)
|
2022-04-11 11:57:52 +08:00
|
|
|
{
|
2024-07-04 16:59:57 +08:00
|
|
|
ret = status;
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
2020-08-04 18:31:31 +08:00
|
|
|
|
2021-12-09 15:08:01 +08:00
|
|
|
/* Re-enable pre-emption (It is expected that interrupts
|
|
|
|
* have already been re-enabled in the above logic)
|
|
|
|
*/
|
2020-08-04 18:31:31 +08:00
|
|
|
|
2020-12-15 09:39:23 +08:00
|
|
|
sched_unlock();
|
2007-02-18 07:21:28 +08:00
|
|
|
}
|
|
|
|
|
2016-12-10 06:50:34 +08:00
|
|
|
leave_cancellation_point();
|
2016-06-12 06:42:42 +08:00
|
|
|
sinfo("Returning %d\n", ret);
|
2007-02-18 07:21:28 +08:00
|
|
|
return ret;
|
|
|
|
}
|