summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-25 09:01:57 +0100
committerSebastian Huber <sebastian.huber@embedded-brains.de>2015-11-27 07:24:51 +0100
commit443c61ec94a7f953d6da0a548c92173ee557d2aa (patch)
tree56897d206dafa6c632c84cac43c1e648010ece26
parentRequire __getreent() (diff)
downloadrtems-443c61ec94a7f953d6da0a548c92173ee557d2aa.tar.bz2
Delete empty libc_init()
-rw-r--r--c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c2
-rw-r--r--c/src/lib/libbsp/shared/bsplibc.c5
-rw-r--r--cpukit/libcsupport/Makefile.am2
-rw-r--r--cpukit/libcsupport/include/rtems/libcsupport.h1
-rw-r--r--cpukit/libcsupport/src/newlibc_init.c45
5 files changed, 1 insertions, 54 deletions
diff --git a/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c b/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c
index 773ac21fc0..a797451563 100644
--- a/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c
+++ b/c/src/lib/libbsp/powerpc/beatnik/startup/bspstart.c
@@ -334,8 +334,6 @@ void bsp_start( void )
/*
* Set up our hooks
- * Make sure libc_init is done before drivers initialized so that
- * they can use atexit()
*/
bsp_clicks_per_usec = BSP_bus_frequency/(BSP_time_base_divisor * 1000);
diff --git a/c/src/lib/libbsp/shared/bsplibc.c b/c/src/lib/libbsp/shared/bsplibc.c
index 58fcf65210..252a4cd74a 100644
--- a/c/src/lib/libbsp/shared/bsplibc.c
+++ b/c/src/lib/libbsp/shared/bsplibc.c
@@ -16,9 +16,4 @@ void bsp_libc_init(void)
* Uses malloc() to get area for the iops, so must be after malloc init
*/
(*rtems_libio_init_helper)();
-
- /*
- * Set up for the libc handling.
- */
- libc_init();
}
diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am
index a5da5f1861..d223b1d78e 100644
--- a/cpukit/libcsupport/Makefile.am
+++ b/cpukit/libcsupport/Makefile.am
@@ -109,7 +109,7 @@ TERMINAL_IDENTIFICATION_C_FILES += src/ttyname.c
LIBC_GLUE_C_FILES = src/__getpid.c src/__gettod.c src/__times.c \
src/truncate.c src/access.c src/stat.c src/lstat.c src/pathconf.c \
- src/newlibc_reent.c src/newlibc_init.c src/newlibc_exit.c \
+ src/newlibc_reent.c src/newlibc_exit.c \
src/kill_noposix.c src/utsname.c src/realpath.c
BSD_LIBC_C_FILES = src/strlcpy.c src/strlcat.c src/issetugid.c
diff --git a/cpukit/libcsupport/include/rtems/libcsupport.h b/cpukit/libcsupport/include/rtems/libcsupport.h
index e4ae0aea63..16754c5911 100644
--- a/cpukit/libcsupport/include/rtems/libcsupport.h
+++ b/cpukit/libcsupport/include/rtems/libcsupport.h
@@ -57,7 +57,6 @@ void malloc_set_heap_pointer(Heap_Control *new_heap);
* This routine is primarily used for debugging.
*/
Heap_Control *malloc_get_heap_pointer( void );
-extern void libc_init(void);
extern int host_errno(void);
extern void fix_syscall_errno(void);
diff --git a/cpukit/libcsupport/src/newlibc_init.c b/cpukit/libcsupport/src/newlibc_init.c
deleted file mode 100644
index 8087fa20cb..0000000000
--- a/cpukit/libcsupport/src/newlibc_init.c
+++ /dev/null
@@ -1,45 +0,0 @@
-/**
- * @file
- *
- * @brief Newlib Initialization
- * @ingroup libcsupport
- */
-
-/*
- * Implementation of hooks for the CYGNUS newlib libc
- * These hooks set things up so that:
- * + '_REENT' is switched at task switch time.
- *
- * COPYRIGHT (c) 1994 by Division Incorporated
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- *
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#if defined(RTEMS_NEWLIB)
-#include <rtems/libcsupport.h>
-
-/**
- * Init libc for CYGNUS newlib
- *
- * Set up _REENT to use our global libc_global_reent.
- * (newlib provides a global of its own, but we prefer our own name for it)
- *
- * If reentrancy is desired (which it should be), then
- * we install the task extension hooks to maintain the
- * newlib reentrancy global variable _REENT on task
- * create, delete, switch, exit, etc.
- *
- */
-void
-libc_init(void)
-{
-}
-
-#endif