usleep contributed by Nicolas Pitre <nico@cam.org>
authorErik Andersen <andersen@codepoet.org>
Tue, 4 Apr 2000 18:49:18 +0000 (18:49 -0000)
committerErik Andersen <andersen@codepoet.org>
Tue, 4 Apr 2000 18:49:18 +0000 (18:49 -0000)
 -Erik

Changelog
applets/busybox.c
busybox.c
busybox.def.h
internal.h

index 3b083f3..327c1ea 100644 (file)
--- a/Changelog
+++ b/Changelog
@@ -16,6 +16,7 @@
            and then adjusted a bit by me.
        * Added tr and dirname from John Lombardo <john@deltanet.com> 
        * Added echo and test (from me).
+       * Added usleep contributed by Nicolas Pitre <nico@cam.org>
        * tar wouldn't create directory entries that don't end in '/',
            now it does (thanks to Avery Pennarun <apenwarr@worldvisions.ca>)
        * Several fixes from Pavel Roskin <pavel_roskin@geocities.com>:
index 95fee63..c2477a5 100644 (file)
@@ -311,6 +311,9 @@ static const struct Applet applets[] = {
 #ifdef BB_UPDATE
        {"update", update_main, _BB_DIR_SBIN},
 #endif
+#ifdef BB_USLEEP
+       {"usleep", usleep_main, _BB_DIR_BIN},
+#endif
 #ifdef BB_WC
        {"wc", wc_main, _BB_DIR_USR_BIN},
 #endif
index 95fee63..c2477a5 100644 (file)
--- a/busybox.c
+++ b/busybox.c
@@ -311,6 +311,9 @@ static const struct Applet applets[] = {
 #ifdef BB_UPDATE
        {"update", update_main, _BB_DIR_SBIN},
 #endif
+#ifdef BB_USLEEP
+       {"usleep", usleep_main, _BB_DIR_BIN},
+#endif
 #ifdef BB_WC
        {"wc", wc_main, _BB_DIR_USR_BIN},
 #endif
index 7b6d4e4..dd59a28 100644 (file)
@@ -92,6 +92,7 @@
 #define BB_TRUE_FALSE
 #define BB_TTY
 #define BB_UPTIME
+#define BB_USLEEP
 #define BB_WC
 #define BB_WHOAMI
 #define BB_UMOUNT
index e69e625..b90ab7e 100644 (file)
@@ -157,6 +157,7 @@ extern int uname_main(int argc, char** argv);
 extern int uptime_main(int argc, char** argv);
 extern int uniq_main(int argc, char** argv);
 extern int update_main(int argc, char** argv);
+extern int usleep_main(int argc, char** argv);
 extern int wc_main(int argc, char** argv);
 extern int whoami_main(int argc, char** argv);
 extern int yes_main(int argc, char** argv);