summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/condget.c
blob: b89566af0352130a86720f819777f7712a11cccc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/*
 *  COPYRIGHT (c) 1989-2007.
 *  On-Line Applications Research Corporation (OAR).
 *
 *  The license and distribution terms for this file may be
 *  found in the file LICENSE in this distribution or at
 *  http://www.rtems.org/license/LICENSE.
 */

#if HAVE_CONFIG_H
#include "config.h"
#endif

#include <rtems/posix/condimpl.h>

static bool _POSIX_Condition_variables_Check_id_and_auto_init(
  pthread_cond_t *cond
)
{
  if ( cond == NULL ) {
    return false;
  }

  if ( *cond == PTHREAD_COND_INITIALIZER ) {
    int eno;

    _Once_Lock();

    if ( *cond == PTHREAD_COND_INITIALIZER ) {
      eno = pthread_cond_init( cond, NULL );
    } else {
      eno = 0;
    }

    _Once_Unlock();

    if ( eno != 0 ) {
      return false;
    }
  }

  return true;
}

POSIX_Condition_variables_Control *_POSIX_Condition_variables_Get(
  pthread_cond_t   *cond,
  ISR_lock_Context *lock_context
)
{
  if ( !_POSIX_Condition_variables_Check_id_and_auto_init( cond ) ) {
    return NULL;
  }

  return (POSIX_Condition_variables_Control *) _Objects_Get_local(
    (Objects_Id) *cond,
    lock_context,
    &_POSIX_Condition_variables_Information
  );
}