source: rtems/cpukit/posix/src/seminit.c @ 04da96c7

5
Last change on this file since 04da96c7 was 21789a21, checked in by Sebastian Huber <sebastian.huber@…>, on 07/28/15 at 12:45:42

score: Rename _POSIX_Absolute_timeout_to_ticks()

Rename _POSIX_Absolute_timeout_to_ticks() to
_TOD_Absolute_timeout_to_ticks() and move it to the score directory.
Delete empty <rtems/posix/time.h>.

  • Property mode set to 100644
File size: 1.1 KB
Line 
1/**
2 * @file
3 *
4 * @brief Initializing of an Unnamed Semaphore
5 * @ingroup POSIXAPI
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-2007.
10 *  On-Line Applications Research Corporation (OAR).
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.rtems.org/license/LICENSE.
15 */
16
17#if HAVE_CONFIG_H
18#include "config.h"
19#endif
20
21#include <stdarg.h>
22
23#include <errno.h>
24#include <fcntl.h>
25#include <pthread.h>
26#include <semaphore.h>
27#include <limits.h>
28
29#include <rtems/system.h>
30#include <rtems/posix/semaphoreimpl.h>
31#include <rtems/seterr.h>
32
33/*
34 *  11.2.1 Initialize an Unnamed Semaphore, P1003.1b-1993, p.219
35 */
36
37int sem_init(
38  sem_t         *sem,
39  int            pshared,
40  unsigned int   value
41)
42{
43  int                        status;
44  POSIX_Semaphore_Control   *the_semaphore;
45
46  if ( !sem )
47    rtems_set_errno_and_return_minus_one( EINVAL );
48
49  _Objects_Allocator_lock();
50  status = _POSIX_Semaphore_Create_support(
51    NULL,
52    0,
53    pshared,
54    value,
55    &the_semaphore
56  );
57  _Objects_Allocator_unlock();
58
59  if ( status != -1 )
60    *sem = the_semaphore->Object.id;
61
62  return status;
63}
Note: See TracBrowser for help on using the repository browser.