/* This is a process that just sleeps infinitely. */ #include #include #ifdef HAVE_UNISTD_H #include #endif int main (int argc, char **argv) { while (1) sleep (10000000); return 1; }