OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [posix/] [src/] [seminit.c] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: seminit.c,v 1.2 2001-09-27 11:59:17 chris Exp $
3
 */
4
 
5
#include <stdarg.h>
6
 
7
#include <errno.h>
8
#include <fcntl.h>
9
#include <pthread.h>
10
#include <semaphore.h>
11
#include <limits.h>
12
 
13
#include <rtems/system.h>
14
#include <rtems/score/object.h>
15
#include <rtems/posix/semaphore.h>
16
#include <rtems/posix/time.h>
17
#include <rtems/posix/seterr.h>
18
 
19
/*PAGE
20
 *
21
 *  11.2.1 Initialize an Unnamed Semaphore, P1003.1b-1993, p.219
22
 */
23
 
24
int sem_init(
25
  sem_t         *sem,
26
  int            pshared,
27
  unsigned int   value
28
)
29
{
30
  int                        status;
31
  POSIX_Semaphore_Control   *the_semaphore;
32
 
33
  if ( !sem )
34
    set_errno_and_return_minus_one( EINVAL );
35
 
36
  status = _POSIX_Semaphore_Create_support(
37
    NULL,
38
    pshared,
39
    value,
40
    &the_semaphore
41
  );
42
 
43
  if ( status != -1 )
44
    *sem = the_semaphore->Object.id;
45
 
46
  return status;
47
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.