summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2011-02-25 10:20:02 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2011-02-25 10:20:02 +0000
commitf154804273bf22bb3a7513e3ba8c134f902941aa (patch)
treec6f40f91e56e29e2286911c99ceb9c53a8b743c6 /cpukit/libcsupport
parent2011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-f154804273bf22bb3a7513e3ba8c134f902941aa.tar.bz2
2011-02-25 Ralf Corsépius <ralf.corsepius@rtems.org>
* libcsupport/src/sleep_noposix.c: Remove. * libcsupport/Makefile.am: Reflect changes above. * posix/src/sleep.c, posix/src/usleep.c: Remove. * posix/Makefile.am: Reflect changes above. * configure.ac: Error out if libc doesn't provide sleep, usleep.
Diffstat (limited to 'cpukit/libcsupport')
-rw-r--r--cpukit/libcsupport/Makefile.am2
-rw-r--r--cpukit/libcsupport/src/sleep_noposix.c55
2 files changed, 1 insertions, 56 deletions
diff --git a/cpukit/libcsupport/Makefile.am b/cpukit/libcsupport/Makefile.am
index 090ca0b0f1..95eee5bd77 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/kill_noposix.c src/sleep_noposix.c src/utsname.c
+ src/kill_noposix.c src/utsname.c
BSD_LIBC_C_FILES = src/strlcpy.c src/strlcat.c src/issetugid.c
diff --git a/cpukit/libcsupport/src/sleep_noposix.c b/cpukit/libcsupport/src/sleep_noposix.c
deleted file mode 100644
index 2498dd9b0d..0000000000
--- a/cpukit/libcsupport/src/sleep_noposix.c
+++ /dev/null
@@ -1,55 +0,0 @@
-/*
- * Marginal implementations of some POSIX API routines
- * to be used when POSIX is disabled.
- *
- * + kill
- * + _kill_r
- * + __kill
- * + sleep
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.com/license/LICENSE.
- *
- * $Id$
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#include <rtems.h>
-
-#include <unistd.h>
-
-/*
- * 3.4.3 Delay Process Execution, P1003.1b-1993, p. 81
- *
- * $Id$
- */
-
-#include <time.h>
-#include <unistd.h>
-
-#include <rtems.h>
-
-#if !defined(RTEMS_POSIX_API)
-unsigned int sleep(
- unsigned int seconds
-)
-{
- rtems_status_code status;
- rtems_interval ticks_per_second;
-
- ticks_per_second = rtems_clock_get_ticks_per_second() * seconds;
-
- status = rtems_task_wake_after( ticks_per_second );
-
- /*
- * Returns the "unslept" amount of time. In RTEMS signals are not
- * interruptable, so tasks really sleep all of the requested time.
- */
-
- return 0;
-}
-#endif