2001-04-08 Joel Sherrill <joel@OARcorp.com>

* macros/rtems/score/object.inl: Corrected arguments.
This commit is contained in:
Joel Sherrill
2002-04-08 18:23:12 +00:00
parent aadb6b0db7
commit ab377aa641
4 changed files with 14 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
2001-04-08 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected arguments.
2001-04-08 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/userext.inl: Updated to reflect modifications

View File

@@ -23,9 +23,9 @@
*/
#define _Objects_Build_id( _the_class, _node, _index ) \
( (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) | \
(( (Objects_Id) node ) << OBJECTS_NODE_START_BIT) | \
(( (Objects_Id) index ) << OBJECTS_INDEX_START_BIT) )
( (( (Objects_Id) (_the_class) ) << OBJECTS_CLASS_START_BIT) | \
(( (Objects_Id) (_node) ) << OBJECTS_NODE_START_BIT) | \
(( (Objects_Id) (_index) ) << OBJECTS_INDEX_START_BIT) )
/*PAGE
*

View File

@@ -1,3 +1,7 @@
2001-04-08 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected arguments.
2001-04-08 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/userext.inl: Updated to reflect modifications

View File

@@ -23,9 +23,9 @@
*/
#define _Objects_Build_id( _the_class, _node, _index ) \
( (( (Objects_Id) the_class ) << OBJECTS_CLASS_START_BIT) | \
(( (Objects_Id) node ) << OBJECTS_NODE_START_BIT) | \
(( (Objects_Id) index ) << OBJECTS_INDEX_START_BIT) )
( (( (Objects_Id) (_the_class) ) << OBJECTS_CLASS_START_BIT) | \
(( (Objects_Id) (_node) ) << OBJECTS_NODE_START_BIT) | \
(( (Objects_Id) (_index) ) << OBJECTS_INDEX_START_BIT) )
/*PAGE
*