Searched defs:pidfd (Results 1 - 1 of 1) sorted by relevance

/illumos-gate/usr/src/cmd/syslogd/
H A Dsyslogd.c2705 int pidfd; local
2709 if ((pidfd = open(PidFileName, O_RDWR|O_CREAT|O_TRUNC, 0644))
2721 (void) fchmod(pidfd, S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH);
2724 if (write(pidfd, line, strlen(line)) < 0) {
2727 "write to %s on fd %d failed", PidFileName, pidfd);
2735 (void) close(pidfd);

Completed in 133 milliseconds