source: rtems/cpukit/sapi/src/extensionident.c @ 37cd592

4.104.114.84.95
Last change on this file since 37cd592 was ac97074f, checked in by Joel Sherrill <joel.sherrill@…>, on 03/15/02 at 14:32:22

2001-03-15 Joel Sherrill <joel@…>

  • src/extension.c: Split to reduce minimum code size per PR134.
  • src/extensioncreate.c, src/extensiondelete.c, src/extensionident.c: New files. src/Makefile.am: Modified to reflect above.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 *  Extension Manager -- rtems_extension_ident
3 *
4 *
5 *  COPYRIGHT (c) 1989-2002.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
14
15#include <rtems/system.h>
16#include <rtems/rtems/support.h>
17#include <rtems/score/object.h>
18#include <rtems/score/thread.h>
19#include <rtems/extension.h>
20
21/*PAGE
22 *
23 *  rtems_extension_ident
24 *
25 *  This directive returns the system ID associated with
26 *  the extension name.
27 *
28 *  Input parameters:
29 *    name - user defined message queue name
30 *    id   - pointer to extension id
31 *
32 *  Output parameters:
33 *    *id               - message queue id
34 *    RTEMS_SUCCESSFUL - if successful
35 *    error code        - if unsuccessful
36 */
37
38rtems_status_code rtems_extension_ident(
39  rtems_name    name,
40  Objects_Id   *id
41)
42{
43  Objects_Name_to_id_errors  status;
44
45  status = _Objects_Name_to_id(
46    &_Extension_Information,
47    &name,
48    OBJECTS_SEARCH_LOCAL_NODE,
49    id
50  );
51
52  return _Status_Object_name_errors_to_status[ status ];
53}
Note: See TracBrowser for help on using the repository browser.