source: rtems/cpukit/sapi/src/extensionident.c @ d6f1fe2e

Last change on this file since d6f1fe2e was d6f1fe2e, checked in by Joel Sherrill <joel.sherrill@…>, on 09/04/03 at 18:47:20

2003-09-04 Joel Sherrill <joel@…>

  • include/confdefs.h, include/rtems/config.h, include/rtems/extension.h, include/rtems/fatal.h, include/rtems/init.h, include/rtems/io.h, include/rtems/mptables.h, include/rtems/sptables.h, inline/rtems/extension.inl, macros/rtems/extension.inl, src/debug.c, src/exinit.c, src/extension.c, src/extensioncreate.c, src/extensiondelete.c, src/extensionident.c, src/fatal.c, src/io.c, src/itronapi.c, src/posixapi.c, src/rtemsapi.c: URL for license changed.
  • 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.rtems.com/license/LICENSE.
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.