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