Searched refs:nullfd (Results 1 - 1 of 1) sorted by relevance

/systemd/src/nspawn/
H A Dnspawn-setuid.c49 int nullfd; local
60 nullfd = open("/dev/null", O_RDWR);
61 if (nullfd < 0)
64 if (dup3(nullfd, STDIN_FILENO, 0) < 0)
67 if (dup3(nullfd, STDERR_FILENO, 0) < 0)
70 if (nullfd > 2)
71 safe_close(nullfd);

Completed in 1576 milliseconds