aboutsummaryrefslogtreecommitdiff
path: root/src/libthread/test/tdaemon.c
blob: 5ac9768ff8dbbdbfa9edbb4f744eb116e8ed5b61 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <u.h>
#include <libc.h>
#include <thread.h>

void
threadmain(int argc, char **argv)
{
	threaddaemonize();
	sleep(5*1000);
	print("still running\n");
}