forked from Imagelibrary/rtems
2001-04-08 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected arguments.
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -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
|
||||
*
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
*
|
||||
|
||||
Reference in New Issue
Block a user