summaryrefslogtreecommitdiffstats
path: root/cpukit/score/inline
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-09-15 01:01:51 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-09-15 01:01:51 +0000
commitd36b31523d7a7f328bc1b24127024cacaca4da74 (patch)
tree6c04e40bd99c651625a9fd358bd1c11027969abc /cpukit/score/inline
parent2003-09-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-d36b31523d7a7f328bc1b24127024cacaca4da74.tar.bz2
2003-09-15 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 489/rtems * include/rtems/score/thread.h: Change struct Thread_Control_struct.libc_reent to using struct _reent*. * inline/rtems/score/thread.inl: Reflect change above.
Diffstat (limited to 'cpukit/score/inline')
-rw-r--r--cpukit/score/inline/rtems/score/thread.inl4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/score/inline/rtems/score/thread.inl b/cpukit/score/inline/rtems/score/thread.inl
index a3a72e7d4e..1154c061d2 100644
--- a/cpukit/score/inline/rtems/score/thread.inl
+++ b/cpukit/score/inline/rtems/score/thread.inl
@@ -402,7 +402,7 @@ RTEMS_INLINE_ROUTINE void _Thread_Internal_free (
* This routine returns the C library re-enterant pointer.
*/
-RTEMS_INLINE_ROUTINE void **_Thread_Get_libc_reent( void )
+RTEMS_INLINE_ROUTINE struct _reent **_Thread_Get_libc_reent( void )
{
return _Thread_libc_reent;
}
@@ -417,7 +417,7 @@ RTEMS_INLINE_ROUTINE void **_Thread_Get_libc_reent( void )
*/
RTEMS_INLINE_ROUTINE void _Thread_Set_libc_reent (
- void **libc_reent
+ struct _reent **libc_reent
)
{
_Thread_libc_reent = libc_reent;