forked from Imagelibrary/rtems
2002-07-16 Joel Sherrill <joel@OARcorp.com>
* macros/rtems/score/object.inl: Corrected typos in _Objects_Open, _Objects_Close, and _Objects_Namespace_remove.
This commit is contained in:
@@ -1,3 +1,8 @@
|
||||
2002-07-16 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* macros/rtems/score/object.inl: Corrected typos in
|
||||
_Objects_Open, _Objects_Close, and _Objects_Namespace_remove.
|
||||
|
||||
2002-07-05 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* macros/rtems/score/object.inl: Corrected implementation of
|
||||
|
||||
@@ -152,11 +152,11 @@
|
||||
\
|
||||
if ( (_information)->is_string ) \
|
||||
/* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\
|
||||
(_the_object)->name = name; \
|
||||
(_the_object)->name = (_name); \
|
||||
else \
|
||||
/* _Objects_Copy_name_raw( \
|
||||
(_name), (_the_object)->name, (_information)->name_length ); */ \
|
||||
(_the_object)->name = name; \
|
||||
(_the_object)->name = (_name); \
|
||||
} while (0)
|
||||
|
||||
/*PAGE
|
||||
@@ -181,7 +181,7 @@
|
||||
*/
|
||||
|
||||
#define _Objects_Namespace_remove( _information, _the_object ) \
|
||||
(_the_object)->name = 0 \
|
||||
(_the_object)->name = 0; \
|
||||
_Objects_Clear_name( (_the_object)->name, (_information)->name_length )
|
||||
|
||||
#endif
|
||||
|
||||
@@ -1,3 +1,8 @@
|
||||
2002-07-16 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* macros/rtems/score/object.inl: Corrected typos in
|
||||
_Objects_Open, _Objects_Close, and _Objects_Namespace_remove.
|
||||
|
||||
2002-07-05 Joel Sherrill <joel@OARcorp.com>
|
||||
|
||||
* macros/rtems/score/object.inl: Corrected implementation of
|
||||
|
||||
@@ -152,11 +152,11 @@
|
||||
\
|
||||
if ( (_information)->is_string ) \
|
||||
/* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\
|
||||
(_the_object)->name = name; \
|
||||
(_the_object)->name = (_name); \
|
||||
else \
|
||||
/* _Objects_Copy_name_raw( \
|
||||
(_name), (_the_object)->name, (_information)->name_length ); */ \
|
||||
(_the_object)->name = name; \
|
||||
(_the_object)->name = (_name); \
|
||||
} while (0)
|
||||
|
||||
/*PAGE
|
||||
@@ -181,7 +181,7 @@
|
||||
*/
|
||||
|
||||
#define _Objects_Namespace_remove( _information, _the_object ) \
|
||||
(_the_object)->name = 0 \
|
||||
(_the_object)->name = 0; \
|
||||
_Objects_Clear_name( (_the_object)->name, (_information)->name_length )
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user