aboutsummaryrefslogtreecommitdiff
path: root/halt.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>1999-10-05 16:24:54 +0000
committerEric Andersen <andersen@codepoet.org>1999-10-05 16:24:54 +0000
commitcc8ed39b240180b58810784f844e253263594ac3 (patch)
tree15feebbb4be9a9168209609f48f0b100f9364420 /halt.c
downloadbusybox-cc8ed39b240180b58810784f844e253263594ac3.tar.gz
Initial revision
Diffstat (limited to 'halt.c')
-rw-r--r--halt.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/halt.c b/halt.c
new file mode 100644
index 000000000..7f3ccf966
--- /dev/null
+++ b/halt.c
@@ -0,0 +1,12 @@
+#include "internal.h"
+#include <signal.h>
+
+const char halt_usage[] = "halt\n"
+"\n\t"
+"\thalt the system.\n";
+
+extern int
+halt_main(struct FileInfo * i, int argc, char * * argv)
+{
+ return kill(1, SIGUSR1);
+}