summaryrefslogtreecommitdiff
path: root/example/target.c
blob: fc34b9dc06c45039aa76664e73dcb16b3f84e54e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <stdio.h>
#include <unistd.h>

int main()
{
	printf("pid %li\n", getpid());
	while (1)
	{
		printf("waiting...\n");
		sleep(2);
	}

	return 1;
}