new test program

This commit is contained in:
rsc 2004-12-28 01:36:53 +00:00
parent 2c87dda8f8
commit 96d6b19dcd

View file

@ -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");
}