source: rtems/cpukit/rtems/src/semident.c @ 66cb142

5
Last change on this file since 66cb142 was bac50cfc, checked in by Sebastian Huber <sebastian.huber@…>, on 05/30/16 at 08:51:29

rtems: Remove superfluous includes

  • Property mode set to 100644
File size: 738 bytes
Line 
1/**
2 *  @file
3 *
4 *  @brief RTEMS Semaphore Name to Id
5 *  @ingroup ClassicSem
6 */
7
8/*
9 *  COPYRIGHT (c) 1989-1999.
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 <rtems/rtems/semimpl.h>
22#include <rtems/rtems/statusimpl.h>
23
24rtems_status_code rtems_semaphore_ident(
25  rtems_name  name,
26  uint32_t    node,
27  rtems_id   *id
28)
29{
30  Objects_Name_or_id_lookup_errors  status;
31
32  status = _Objects_Name_to_id_u32( &_Semaphore_Information, name, node, id );
33
34  return _Status_Object_name_errors_to_status[ status ];
35}
Note: See TracBrowser for help on using the repository browser.