diff options
-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"); +} |