test-sleep-forever.c revision 03b9ca6d4ecf2577958530b8390d675c73a58825
1/* This is a process that just sleeps infinitely. */
2
3#include <unistd.h>
4
5int
6main (int argc, char **argv)
7{
8  while (1)
9    sleep (10000000);
10
11  return 1;
12}
13