Changeset eb7cddd3 in rtems


Ignore:
Timestamp:
01/10/03 15:04:01 (20 years ago)
Author:
Joel Sherrill <joel.sherrill@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
6b384516
Parents:
0b178f04
Message:

2003-01-10 Joel Sherrill <joel@…>

  • src/objectmp.c: Corrected use of name parameter to reflect that it is actually the name not a pointer to the name.
Location:
cpukit/score
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/score/ChangeLog

    r0b178f04 reb7cddd3  
     12003-01-10      Joel Sherrill <joel@OARcorp.com>
     2
     3        * src/objectmp.c: Corrected use of name parameter to reflect that it
     4        is actually the name not a pointer to the name.
     5
    162002-12-12      Ralf Corsepius <corsepiu@faw.uni-ulm.de>
    27
  • cpukit/score/src/objectmp.c

    r0b178f04 reb7cddd3  
    164164  Chain_Node         *the_node;
    165165  Objects_MP_Control *the_object;
    166   unsigned32          name_to_use = *(unsigned32 *)the_name;  /* XXX variable */
     166  unsigned32          name_to_use = the_name;  /* XXX only fixed length names */
    167167
    168168  if ( nodes_to_search > _Objects_Maximum_nodes )
Note: See TracChangeset for help on using the changeset viewer.