diff options
author | rsc <devnull@localhost> | 2004-12-28 01:36:53 +0000 |
---|---|---|
committer | rsc <devnull@localhost> | 2004-12-28 01:36:53 +0000 |
commit | 96d6b19dcd4f359c3fa8eefcb8615082c840e184 (patch) | |
tree | 5549a01550b30957ab76993f5caa1f17f6c32b72 /src/libthread/test | |
parent | 2c87dda8f89e84082523b03b62c5d47d55c13341 (diff) | |
download | plan9port-96d6b19dcd4f359c3fa8eefcb8615082c840e184.tar.gz plan9port-96d6b19dcd4f359c3fa8eefcb8615082c840e184.tar.bz2 plan9port-96d6b19dcd4f359c3fa8eefcb8615082c840e184.zip |
new test program
Diffstat (limited to 'src/libthread/test')
-rw-r--r-- | src/libthread/test/tdaemon.c | 11 |
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"); +} |