source: rtems/cpukit/score/src/objectnametoid.c @ d686006

4.104.114.84.95
Last change on this file since d686006 was d686006, checked in by Joel Sherrill <joel.sherrill@…>, on 11/01/04 at 15:37:30

2004-11-01 Joel Sherrill <joel@…>

  • score/src/coresemsurrender.c, score/src/objectnametoid.c: All _Objects_Is_Local... should only be called if multiprocessing is enabled.
  • Property mode set to 100644
File size: 2.7 KB
Line 
1/*
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.rtems.com/license/LICENSE.
11 *
12 *  $Id$
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_NAME_OR_ID_LOOKUP_SUCCESSFUL - if successful
43 *    error code                           - if unsuccessful
44 */
45
46Objects_Name_or_id_lookup_errors _Objects_Name_to_id(
47  Objects_Information *information,
48  Objects_Name         name,
49  uint32_t             node,
50  Objects_Id          *id
51)
52{
53  boolean                    search_local_node;
54  Objects_Control           *the_object;
55  uint32_t                   index;
56  uint32_t                   name_length;
57  Objects_Name_comparators   compare_them;
58
59  if ( !id )
60    return OBJECTS_INVALID_ADDRESS;
61
62  if ( name == 0 )
63    return OBJECTS_INVALID_NAME;
64
65  search_local_node = FALSE;
66
67  if ( information->maximum != 0 &&
68      (node == OBJECTS_SEARCH_ALL_NODES || node == OBJECTS_SEARCH_LOCAL_NODE
69#if defined(RTEMS_MULTIPROCESSING)
70       || _Objects_Is_local_node( node )
71#endif
72      ))
73   search_local_node = TRUE;
74
75  if ( search_local_node ) {
76    name_length = information->name_length;
77
78    if ( information->is_string ) compare_them = _Objects_Compare_name_string;
79    else                          compare_them = _Objects_Compare_name_raw;
80
81    for ( index = 1; index <= information->maximum; index++ ) {
82      the_object = information->local_table[ index ];
83      if ( !the_object || !the_object->name )
84        continue;
85
86      if ( (*compare_them)( name, the_object->name, name_length ) ) {
87        *id = the_object->id;
88        return OBJECTS_NAME_OR_ID_LOOKUP_SUCCESSFUL;
89      }
90    }
91  }
92
93#if defined(RTEMS_MULTIPROCESSING)
94  if ( _Objects_Is_local_node( node ) || node == OBJECTS_SEARCH_LOCAL_NODE )
95    return OBJECTS_INVALID_NAME;
96
97  return ( _Objects_MP_Global_name_search( information, name, node, id ) );
98#else
99  return OBJECTS_INVALID_NAME;
100#endif
101}
Note: See TracBrowser for help on using the repository browser.