Home | History | Annotate | Download | only in dhcpcd

Lines Matching refs:pidfd

91 int pidfd = -1;
203 if (pidfd > -1) {
208 close(pidfd);
2041 pidfd = open(pidfile, O_WRONLY | O_CREAT | O_NONBLOCK, 0664);
2042 if (pidfd == -1)
2047 if (flock(pidfd, LOCK_EX | LOCK_NB) == -1) {
2051 if (set_cloexec(pidfd) == -1)
2073 writepid(pidfd, getpid());