source: rtems/cpukit/rtems/src/regionident.c @ 1095ec1

4.104.114.84.95
Last change on this file since 1095ec1 was 1095ec1, checked in by Ralf Corsepius <ralf.corsepius@…>, on 01/18/05 at 09:03:45

Include config.h.

  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[5aa64518]1/*
2 *  Region Manager
3 *
4 *
[08311cc3]5 *  COPYRIGHT (c) 1989-1999.
[5aa64518]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
[277cc95]10 *  http://www.rtems.com/license/LICENSE.
[5aa64518]11 *
12 *  $Id$
13 */
14
[1095ec1]15#if HAVE_CONFIG_H
16#include "config.h"
17#endif
18
[5aa64518]19#include <rtems/system.h>
20#include <rtems/rtems/status.h>
21#include <rtems/rtems/support.h>
22#include <rtems/score/object.h>
23#include <rtems/rtems/options.h>
24#include <rtems/rtems/region.h>
25#include <rtems/score/states.h>
26#include <rtems/score/thread.h>
[90015e7f]27#include <rtems/score/apimutex.h>
[5aa64518]28
29/*PAGE
30 *
31 *  rtems_region_ident
32 *
33 *  This directive returns the system ID associated with
34 *  the region name.
35 *
36 *  Input parameters:
37 *    name - user defined region name
38 *    id   - pointer to region id
39 *
40 *  Output parameters:
41 *    *id      - region id
42 *    RTEMS_SUCCESSFUL - if successful
43 *    error code - if unsuccessful
44 */
45
46rtems_status_code rtems_region_ident(
47  rtems_name    name,
48  Objects_Id   *id
49)
50{
[1e2e6fe0]51  Objects_Name_or_id_lookup_errors  status;
[5aa64518]52
53  status = _Objects_Name_to_id(
54    &_Region_Information,
[6312db3]55    (Objects_Name) name,
[5aa64518]56    OBJECTS_SEARCH_LOCAL_NODE,
57    id
58  );
59
60  return _Status_Object_name_errors_to_status[ status ];
61}
Note: See TracBrowser for help on using the repository browser.