blob: 23dbe38be9cc7dfc77460b7d2777436d746b3a68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/* $FreeBSD$ */
#include <sys/stdint.h>
#include <sysexits.h>
static int
pidfile(const char *basename)
{
struct pidfh *pfh;
pid_t otherpid, childpid;
if (basename != NULL) {
errx(EX_USAGE, "Need to impliment NetBSD semantics.");
}
pfh = pidfile_open(basename, 0644, &otherpid);
if (pfh == NULL) {
if (errno == EEXIST) {
errx(EXIT_FAILURE, "Daemon already running, pid: %jd.",
(intmax_t)otherpid);
}
/* If we cannot create pidfile from other reasons, only warn. */
warn("Cannot open or create pidfile");
return -1;
}
pidfile_write(pfh);
pidfile_close(pfh);
return 0;
}
|