blob: 50af91f4eed7dad886f8ab8eec62d0b9558e1775 [file] [log] [blame]
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +00001/* 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 */
Denis Vlasenko1caca342007-08-02 10:14:29 +00009
10/* Override ENABLE_FEATURE_PIDFILE */
11#define WANT_PIDFILE 1
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000012#include "libbb.h"
13
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000014int 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 */
Denis Vlasenko6a5598c2007-03-27 22:05:34 +000021 pid_fd = open(path, O_WRONLY|O_CREAT|O_TRUNC, 0666);
Denis Vlasenkoebf48bb2007-03-27 22:02:06 +000022 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}