Changeset 1b074a1 in rtems
- Timestamp:
- May 17, 2002, 6:01:36 PM (19 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- cb3a7ed
- Parents:
- 6a3a81c
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
c/src/exec/score/ChangeLog
r6a3a81c r1b074a1 1 2001-05-17 Joel Sherrill <joel@OARcorp.com> 2 3 * macros/rtems/score/thread..inl: Implemented missing routines 4 for new libc reentrancy support. 5 1 6 2002-05-15 Chris Johns <ccj@acm.org> 2 7 -
c/src/exec/score/macros/rtems/score/thread.inl
r6a3a81c r1b074a1 215 215 _Objects_Free( &_Thread_Internal_information, &(_the_task)->Object ) 216 216 217 /* 218 * _Thread_Get_libc_reent 219 */ 220 221 #define _Thread_Get_libc_reent() \ 222 (_Thread_libc_reent) 223 224 /* 225 * _Thread_Set_libc_reent 226 */ 227 228 #define _Thread_Set_libc_reent(_libc_reent) \ 229 do { \ 230 _Thread_libc_reent = (_libc_reent); \ 231 } while (0) 232 217 233 #endif 218 234 /* end of include file */ -
cpukit/score/ChangeLog
r6a3a81c r1b074a1 1 2001-05-17 Joel Sherrill <joel@OARcorp.com> 2 3 * macros/rtems/score/thread..inl: Implemented missing routines 4 for new libc reentrancy support. 5 1 6 2002-05-15 Chris Johns <ccj@acm.org> 2 7 -
cpukit/score/macros/rtems/score/thread.inl
r6a3a81c r1b074a1 215 215 _Objects_Free( &_Thread_Internal_information, &(_the_task)->Object ) 216 216 217 /* 218 * _Thread_Get_libc_reent 219 */ 220 221 #define _Thread_Get_libc_reent() \ 222 (_Thread_libc_reent) 223 224 /* 225 * _Thread_Set_libc_reent 226 */ 227 228 #define _Thread_Set_libc_reent(_libc_reent) \ 229 do { \ 230 _Thread_libc_reent = (_libc_reent); \ 231 } while (0) 232 217 233 #endif 218 234 /* end of include file */
Note: See TracChangeset
for help on using the changeset viewer.