summaryrefslogtreecommitdiff
path: root/src/daemon/pidfile.h
blob: a92ae572268ed4fd9fbc6d803f38530e9c366216 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/*
    Copyright (C) 2008 Andreas Baumann <abaumann@yahoo.com>

    This program is free software: you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation, either version 3 of the License, or
    (at your option) any later version.

    This program is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License
    along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/

#ifndef __PIDFILE_H
#define __PIDFILE_H

#include "port/limits.h"		/* for PATH_MAX */
#include "port/stdbool.h"		/* for bool */

#include "errors.h"

#include <sys/types.h>			/* for pid_t */

struct pidfile_t {
	char filename[PATH_MAX];	/**< the filename */
	int fd;				/**< file descriptor */
	bool locked;			/**< is the pidfile locked? */
	bool running;			/**< is another process locking too? */
};

void pidfile_init( struct pidfile_t *pidfile );

void pidfile_set_from_daemon_name( struct pidfile_t *pidfile, const char *name );

void pidfile_set_from_filename( struct pidfile_t *pidfile, const char *filename );

bool is_daemon_running( struct pidfile_t *pidfile, pid_t *pid, wolf_error_t *error );

wolf_error_t pidfile_create( struct pidfile_t *pidfile );

wolf_error_t pidfile_release( struct pidfile_t *pidfile );

wolf_error_t pidfile_remove( struct pidfile_t *pidfile );

#endif /* ifndef __PIDFILE_H */