source: rtems/cpukit/sapi/src/extensionident.c @ 16351f7a

4.104.114.84.95
Last change on this file since 16351f7a was 16351f7a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/28/05 at 02:04:21

2005-01-28 Ralf Corsepius <ralf.corsepius@…>

  • sapi/src/debug.c, sapi/src/exinit.c, sapi/src/extension.c, sapi/src/extensioncreate.c, sapi/src/extensiondelete.c, sapi/src/extensionident.c, sapi/src/fatal.c, sapi/src/io.c, sapi/src/itronapi.c, sapi/src/posixapi.c, sapi/src/rtemsapi.c: Include config.h.
  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[ac97074f]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
[2ba508b]10 *  http://www.rtems.com/license/LICENSE.
[ac97074f]11 *
12 *  $Id$
13 */
14
[16351f7a]15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
[ac97074f]19#include <rtems/system.h>
20#include <rtems/rtems/support.h>
21#include <rtems/score/object.h>
22#include <rtems/score/thread.h>
23#include <rtems/extension.h>
24
25/*PAGE
26 *
27 *  rtems_extension_ident
28 *
29 *  This directive returns the system ID associated with
30 *  the extension name.
31 *
32 *  Input parameters:
33 *    name - user defined message queue name
34 *    id   - pointer to extension id
35 *
36 *  Output parameters:
37 *    *id               - message queue id
38 *    RTEMS_SUCCESSFUL - if successful
39 *    error code        - if unsuccessful
40 */
41
42rtems_status_code rtems_extension_ident(
43  rtems_name    name,
44  Objects_Id   *id
45)
46{
[6185a0d3]47  Objects_Name_or_id_lookup_errors  status;
[ac97074f]48
49  status = _Objects_Name_to_id(
50    &_Extension_Information,
51    &name,
52    OBJECTS_SEARCH_LOCAL_NODE,
53    id
54  );
55
56  return _Status_Object_name_errors_to_status[ status ];
57}
Note: See TracBrowser for help on using the repository browser.