start_stop_daemon: NOMMU fixes, round 2 by Alex Landau <landau_alex@yahoo.com>
[oweals/busybox.git] / libbb / pidfile.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * pid file routines
4  *
5  * Copyright (C) 2007 by Stephane Billiart <stephane.billiart@gmail.com>
6  *
7  * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
8  */
9
10 /* Override ENABLE_FEATURE_PIDFILE */
11 #define WANT_PIDFILE 1
12 #include "libbb.h"
13
14 int write_pidfile(const char *path)
15 {
16         int pid_fd;
17         char *end;
18         char buf[sizeof(int)*3 + 2];
19
20         /* we will overwrite stale pidfile */
21         pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
22         if (pid_fd < 0)
23                 return 0;
24         /* few bytes larger, but doesn't use stdio */
25         end = utoa_to_buf(getpid(), buf, sizeof(buf));
26         end[0] = '\n';
27         full_write(pid_fd, buf, end - buf + 1);
28         close(pid_fd);
29         return 1;
30 }