source: rtems/cpukit/posix/src/semtimedwait.c

Last change on this file was 380fb9f, checked in by Joel Sherrill <joel@…>, on 02/16/22 at 22:32:05

cpukit/posix/src/[p-z]*.c: Change license to BSD-2

Updates #3053.

  • Property mode set to 100644
File size: 3.0 KB
Line 
1/* SPDX-License-Identifier: BSD-2-Clause */
2
3/**
4 * @file
5 *
6 * @ingroup POSIX_SEMAPHORE POSIX Semaphores Support
7 *
8 * @brief Lock a Semaphore
9 */
10
11/*
12 *  COPYRIGHT (c) 1989-2008.
13 *  On-Line Applications Research Corporation (OAR).
14 *
15 * Redistribution and use in source and binary forms, with or without
16 * modification, are permitted provided that the following conditions
17 * are met:
18 * 1. Redistributions of source code must retain the above copyright
19 *    notice, this list of conditions and the following disclaimer.
20 * 2. Redistributions in binary form must reproduce the above copyright
21 *    notice, this list of conditions and the following disclaimer in the
22 *    documentation and/or other materials provided with the distribution.
23 *
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34 * POSSIBILITY OF SUCH DAMAGE.
35 */
36
37#ifdef HAVE_CONFIG_H
38#include "config.h"
39#endif
40
41#include <rtems/posix/semaphoreimpl.h>
42#include <rtems/score/todimpl.h>
43
44/*
45 *  11.2.6 Lock a Semaphore, P1003.1b-1993, p.226
46 *
47 *  NOTE: P1003.4b/D8 adds sem_timedwait(), p. 27
48 */
49
50int sem_timedwait(
51  sem_t                 *__restrict _sem,
52  const struct timespec *__restrict abstime
53)
54{
55  Sem_Control          *sem;
56  Thread_queue_Context  queue_context;
57  ISR_Level             level;
58  Thread_Control       *executing;
59  unsigned int          count;
60
61  POSIX_SEMAPHORE_VALIDATE_OBJECT( _sem );
62
63  sem = _Sem_Get( &_sem->_Semaphore );
64  _Thread_queue_Context_initialize( &queue_context );
65  _Thread_queue_Context_ISR_disable( &queue_context, level );
66  executing = _Sem_Queue_acquire_critical( sem, &queue_context );
67
68  count = sem->count;
69  if ( RTEMS_PREDICT_TRUE( count > 0 ) ) {
70    sem->count = count - 1;
71    _Sem_Queue_release( sem, level, &queue_context );
72    return 0;
73  } else {
74    Status_Control status;
75
76    _Thread_queue_Context_set_thread_state(
77      &queue_context,
78      STATES_WAITING_FOR_SEMAPHORE
79    );
80    _Thread_queue_Context_set_enqueue_timeout_realtime_timespec(
81      &queue_context,
82      abstime,
83      true
84    );
85    _Thread_queue_Context_set_ISR_level( &queue_context, level );
86    _Thread_queue_Enqueue(
87      &sem->Queue.Queue,
88      SEMAPHORE_TQ_OPERATIONS,
89      executing,
90      &queue_context
91    );
92    status = _Thread_Wait_get_status( executing );
93    return _POSIX_Zero_or_minus_one_plus_errno( status );
94  }
95}
Note: See TracBrowser for help on using the repository browser.