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

Subversion Repositories openrisc

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

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  $Id: semaphorenametoid.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
 *  _POSIX_Semaphore_Name_to_id
22
 *
23
 *  Look up the specified name and attempt to locate the id
24
 *  for the associated semaphore.
25
 */
26
 
27
int _POSIX_Semaphore_Name_to_id(
28
  const char          *name,
29
  Objects_Id          *id
30
)
31
{
32
  Objects_Name_to_id_errors  status;
33
 
34
   if ( !name )
35
     return EINVAL;
36
 
37
  if ( !name[0] )
38
    return EINVAL;
39
 
40
  status = _Objects_Name_to_id(
41
    &_POSIX_Semaphore_Information, (char *)name, 0, id );
42
 
43
  if ( status == OBJECTS_SUCCESSFUL )
44
    return 0;
45
 
46
  return ENOENT;
47
}
48
 

powered by: WebSVN 2.1.0

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