forked from Imagelibrary/rtems
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:
@@ -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
|
||||
|
||||
@@ -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);
|
||||
|
||||
@@ -188,7 +188,7 @@ rtems_extension libc_delete_hook(
|
||||
|
||||
|
||||
void
|
||||
libc_init(int reentrant)
|
||||
libc_init(void)
|
||||
{
|
||||
_REENT = &libc_global_reent;
|
||||
|
||||
|
||||
@@ -23,8 +23,7 @@
|
||||
|
||||
#include <stdlib.h> /* for free() */
|
||||
|
||||
void libc_init(
|
||||
int reentrant
|
||||
void libc_init(void)
|
||||
)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
#if defined(RTEMS_UNIXLIB)
|
||||
|
||||
void libc_init(int reentrant)
|
||||
void libc_init(void)
|
||||
{
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user