Changeset bf95fc44 in rtems
- Timestamp:
- Sep 15, 2003, 2:12:47 AM (17 years ago)
- Children:
- 4c6fa77
- Parents:
- d45368c
- Location:
- cpukit/score
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/score/ChangeLog
rd45368c rbf95fc44 1 2003-09-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> 2 3 PR 489/rtems 4 * include/rtems/score/thread.h: Change struct 5 Thread_Control_struct.libc_reent to using struct _reent*. 6 * inline/rtems/score/thread.inl: Reflect change above. 7 1 8 2003-09-08 Derick Hammond <derick@perkinstechnologies.com.au> 2 9 -
cpukit/score/include/rtems/score/thread.h
rd45368c rbf95fc44 221 221 void *fp_context; 222 222 #endif 223 void*libc_reent;223 struct _reent *libc_reent; 224 224 void *API_Extensions[ THREAD_API_LAST + 1 ]; 225 225 void **extensions; … … 324 324 * holds a pointer to the task specific data. 325 325 */ 326 327 SCORE_EXTERN void **_Thread_libc_reent; 326 SCORE_EXTERN struct _reent **_Thread_libc_reent; 328 327 329 328 /* -
cpukit/score/inline/rtems/score/thread.inl
rd45368c rbf95fc44 403 403 */ 404 404 405 RTEMS_INLINE_ROUTINE void**_Thread_Get_libc_reent( void )405 RTEMS_INLINE_ROUTINE struct _reent **_Thread_Get_libc_reent( void ) 406 406 { 407 407 return _Thread_libc_reent; … … 418 418 419 419 RTEMS_INLINE_ROUTINE void _Thread_Set_libc_reent ( 420 void**libc_reent420 struct _reent **libc_reent 421 421 ) 422 422 {
Note: See TracChangeset
for help on using the changeset viewer.