OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [exec/] [score/] [src/] [objectnametoid.c] - Blame information for rev 30

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*
2
 *  Object Handler
3
 *
4
 *
5
 *  COPYRIGHT (c) 1989-1999.
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: objectnametoid.c,v 1.2 2001-09-27 11:59:34 chris Exp $
13
 */
14
 
15
#include <rtems/system.h>
16
#include <rtems/score/address.h>
17
#include <rtems/score/chain.h>
18
#include <rtems/score/object.h>
19
#if defined(RTEMS_MULTIPROCESSING)
20
#include <rtems/score/objectmp.h>
21
#endif
22
#include <rtems/score/thread.h>
23
#include <rtems/score/wkspace.h>
24
#include <rtems/score/sysstate.h>
25
#include <rtems/score/isr.h>
26
 
27
/*PAGE
28
 *
29
 *  _Objects_Name_to_id
30
 *
31
 *  These kernel routines search the object table(s) for the given
32
 *  object name and returns the associated object id.
33
 *
34
 *  Input parameters:
35
 *    information - object information
36
 *    name        - user defined object name
37
 *    node        - node indentifier (0 indicates any node)
38
 *    id          - address of return ID
39
 *
40
 *  Output parameters:
41
 *    id                 - object id
42
 *    OBJECTS_SUCCESSFUL - if successful
43
 *    error code         - if unsuccessful
44
 */
45
 
46
Objects_Name_to_id_errors _Objects_Name_to_id(
47
  Objects_Information *information,
48
  Objects_Name         name,
49
  unsigned32           node,
50
  Objects_Id          *id
51
)
52
{
53
  boolean                    search_local_node;
54
  Objects_Control           *the_object;
55
  unsigned32                 index;
56
  unsigned32                 name_length;
57
  Objects_Name_comparators   compare_them;
58
 
59
  if ( name == 0 )
60
    return OBJECTS_INVALID_NAME;
61
 
62
  search_local_node = FALSE;
63
 
64
  if ( information->maximum != 0 &&
65
      (node == OBJECTS_SEARCH_ALL_NODES || node == OBJECTS_SEARCH_LOCAL_NODE ||
66
      _Objects_Is_local_node( node ) ) )
67
   search_local_node = TRUE;
68
 
69
  if ( search_local_node ) {
70
    name_length = information->name_length;
71
 
72
    if ( information->is_string ) compare_them = _Objects_Compare_name_string;
73
    else                          compare_them = _Objects_Compare_name_raw;
74
 
75
    for ( index = 1; index <= information->maximum; index++ ) {
76
 
77
      the_object = information->local_table[ index ];
78
 
79
      if ( !the_object || !the_object->name )
80
        continue;
81
 
82
      if ( (*compare_them)( name, the_object->name, name_length ) ) {
83
        *id = the_object->id;
84
        return OBJECTS_SUCCESSFUL;
85
      }
86
    }
87
  }
88
 
89
  if ( _Objects_Is_local_node( node ) || node == OBJECTS_SEARCH_LOCAL_NODE )
90
    return OBJECTS_INVALID_NAME;
91
 
92
#if defined(RTEMS_MULTIPROCESSING)
93
  return ( _Objects_MP_Global_name_search( information, name, node, id ) );
94
#else
95
  return OBJECTS_INVALID_NAME;
96
#endif
97
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.