blob: 993e0d4c7c7ab26478f70b0e0b28a146c113f2bd (
plain) (
tree)
|
|
#include <time.h>
#include <unistd.h>
int
main(void)
{
struct timespec ts = {0, 100000000L};
switch (fork()) {
case -1:
return -1;
case 0:
return 2;
default:
nanosleep(&ts, NULL);
return 1;
}
}
|