From edfb0eba88dccf34da67b2ff0efee6762a3908c6 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Thu, 18 Feb 1999 15:11:41 +0000 Subject: GLobal reentrancy structure is now dynamically initialized. --- c/src/exec/libcsupport/src/newlibc.c | 3 ++- c/src/lib/libc/newlibc.c | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) (limited to 'c/src') diff --git a/c/src/exec/libcsupport/src/newlibc.c b/c/src/exec/libcsupport/src/newlibc.c index 570c905f30..4926467837 100644 --- a/c/src/exec/libcsupport/src/newlibc.c +++ b/c/src/exec/libcsupport/src/newlibc.c @@ -60,7 +60,7 @@ rtems_unsigned32 MY_task_get_note( int libc_reentrant; /* do we think we are reentrant? */ -struct _reent libc_global_reent = _REENT_INIT(libc_global_reent); +struct _reent libc_global_reent; /* * CYGNUS newlib routine that does atexit() processing and flushes @@ -294,6 +294,7 @@ libc_init(int reentrant) rtems_id extension_id; rtems_status_code rc; + libc_global_reent = (struct _reent) _REENT_INIT((libc_global_reent)); _REENT = &libc_global_reent; if (reentrant) diff --git a/c/src/lib/libc/newlibc.c b/c/src/lib/libc/newlibc.c index 570c905f30..4926467837 100644 --- a/c/src/lib/libc/newlibc.c +++ b/c/src/lib/libc/newlibc.c @@ -60,7 +60,7 @@ rtems_unsigned32 MY_task_get_note( int libc_reentrant; /* do we think we are reentrant? */ -struct _reent libc_global_reent = _REENT_INIT(libc_global_reent); +struct _reent libc_global_reent; /* * CYGNUS newlib routine that does atexit() processing and flushes @@ -294,6 +294,7 @@ libc_init(int reentrant) rtems_id extension_id; rtems_status_code rc; + libc_global_reent = (struct _reent) _REENT_INIT((libc_global_reent)); _REENT = &libc_global_reent; if (reentrant) -- cgit v1.2.3