From d36b31523d7a7f328bc1b24127024cacaca4da74 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 15 Sep 2003 01:01:51 +0000 Subject: 2003-09-15 Ralf Corsepius 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. --- cpukit/score/inline/rtems/score/thread.inl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/score/inline') 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; -- cgit v1.2.3