2008-08-05 Joel Sherrill <joel.sherrill@OARcorp.com>

PR 537/bsps
	* libcsupport/include/rtems/libcsupport.h, libcsupport/src/newlibc.c,
	libcsupport/src/no_libc.c, libcsupport/src/unixlibc.c: Eliminate
	vestiges of ticks_per_timeslice controlling newlib reentrancy. The
	parameter was ignored in libc_init().
This commit is contained in:
Joel Sherrill
2008-08-05 16:51:45 +00:00
parent 46cb968176
commit 8b08935eb8
5 changed files with 12 additions and 5 deletions

View File

@@ -1,3 +1,11 @@
2008-08-05 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 537/bsps
* libcsupport/include/rtems/libcsupport.h, libcsupport/src/newlibc.c,
libcsupport/src/no_libc.c, libcsupport/src/unixlibc.c: Eliminate
vestiges of ticks_per_timeslice controlling newlib reentrancy. The
parameter was ignored in libc_init().
2008-08-05 Joel Sherrill <joel.sherrill@OARcorp.com>
PR 741/networking

View File

@@ -36,7 +36,7 @@ void RTEMS_Malloc_Initialize(
extern void malloc_dump(void);
extern void malloc_walk(size_t source, size_t printf_enabled);
extern void libc_init(int reentrant);
extern void libc_init(void);
extern int host_errno(void);
extern void fix_syscall_errno(void);
extern size_t malloc_free_space(void);

View File

@@ -188,7 +188,7 @@ rtems_extension libc_delete_hook(
void
libc_init(int reentrant)
libc_init(void)
{
_REENT = &libc_global_reent;

View File

@@ -23,8 +23,7 @@
#include <stdlib.h> /* for free() */
void libc_init(
int reentrant
void libc_init(void)
)
{
}

View File

@@ -17,7 +17,7 @@
#if defined(RTEMS_UNIXLIB)
void libc_init(int reentrant)
void libc_init(void)
{
}