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:
Joel Sherrill
2002-07-16 22:22:15 +00:00
parent 8166684def
commit 18c19a7106
4 changed files with 16 additions and 6 deletions

View File

@@ -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

View File

@@ -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

View File

@@ -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

View File

@@ -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