summaryrefslogtreecommitdiffstats
path: root/test/test-sleep-forever.c
blob: 7d9541e84c2b6b55a28fba8d4451977e34e98e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* This is a process that just sleeps infinitely. */

#include <unistd.h>

int
main (int argc, char **argv)
{
  while (1)
    sleep (10000000);
  
  return 1;
}