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