aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2004-12-28 01:36:53 +0000
committerrsc <devnull@localhost>2004-12-28 01:36:53 +0000
commit96d6b19dcd4f359c3fa8eefcb8615082c840e184 (patch)
tree5549a01550b30957ab76993f5caa1f17f6c32b72
parent2c87dda8f89e84082523b03b62c5d47d55c13341 (diff)
downloadplan9port-96d6b19dcd4f359c3fa8eefcb8615082c840e184.tar.gz
plan9port-96d6b19dcd4f359c3fa8eefcb8615082c840e184.tar.bz2
plan9port-96d6b19dcd4f359c3fa8eefcb8615082c840e184.zip
new test program
-rw-r--r--src/libthread/test/tdaemon.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/libthread/test/tdaemon.c b/src/libthread/test/tdaemon.c
new file mode 100644
index 00000000..5ac9768f
--- /dev/null
+++ b/src/libthread/test/tdaemon.c
@@ -0,0 +1,11 @@
+#include <u.h>
+#include <libc.h>
+#include <thread.h>
+
+void
+threadmain(int argc, char **argv)
+{
+ threaddaemonize();
+ sleep(5*1000);
+ print("still running\n");
+}