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>
|
2002-07-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* macros/rtems/score/object.inl: Corrected implementation of
|
* macros/rtems/score/object.inl: Corrected implementation of
|
||||||
|
|||||||
@@ -152,11 +152,11 @@
|
|||||||
\
|
\
|
||||||
if ( (_information)->is_string ) \
|
if ( (_information)->is_string ) \
|
||||||
/* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\
|
/* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\
|
||||||
(_the_object)->name = name; \
|
(_the_object)->name = (_name); \
|
||||||
else \
|
else \
|
||||||
/* _Objects_Copy_name_raw( \
|
/* _Objects_Copy_name_raw( \
|
||||||
(_name), (_the_object)->name, (_information)->name_length ); */ \
|
(_name), (_the_object)->name, (_information)->name_length ); */ \
|
||||||
(_the_object)->name = name; \
|
(_the_object)->name = (_name); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/*PAGE
|
/*PAGE
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define _Objects_Namespace_remove( _information, _the_object ) \
|
#define _Objects_Namespace_remove( _information, _the_object ) \
|
||||||
(_the_object)->name = 0 \
|
(_the_object)->name = 0; \
|
||||||
_Objects_Clear_name( (_the_object)->name, (_information)->name_length )
|
_Objects_Clear_name( (_the_object)->name, (_information)->name_length )
|
||||||
|
|
||||||
#endif
|
#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>
|
2002-07-05 Joel Sherrill <joel@OARcorp.com>
|
||||||
|
|
||||||
* macros/rtems/score/object.inl: Corrected implementation of
|
* macros/rtems/score/object.inl: Corrected implementation of
|
||||||
|
|||||||
@@ -152,11 +152,11 @@
|
|||||||
\
|
\
|
||||||
if ( (_information)->is_string ) \
|
if ( (_information)->is_string ) \
|
||||||
/* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\
|
/* _Objects_Copy_name_string( (_name), (_the_object)->name ); */\
|
||||||
(_the_object)->name = name; \
|
(_the_object)->name = (_name); \
|
||||||
else \
|
else \
|
||||||
/* _Objects_Copy_name_raw( \
|
/* _Objects_Copy_name_raw( \
|
||||||
(_name), (_the_object)->name, (_information)->name_length ); */ \
|
(_name), (_the_object)->name, (_information)->name_length ); */ \
|
||||||
(_the_object)->name = name; \
|
(_the_object)->name = (_name); \
|
||||||
} while (0)
|
} while (0)
|
||||||
|
|
||||||
/*PAGE
|
/*PAGE
|
||||||
@@ -181,7 +181,7 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#define _Objects_Namespace_remove( _information, _the_object ) \
|
#define _Objects_Namespace_remove( _information, _the_object ) \
|
||||||
(_the_object)->name = 0 \
|
(_the_object)->name = 0; \
|
||||||
_Objects_Clear_name( (_the_object)->name, (_information)->name_length )
|
_Objects_Clear_name( (_the_object)->name, (_information)->name_length )
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|||||||
Reference in New Issue
Block a user