Greenbone Vulnerability Management Libraries  22.8.0
pidfile.h
Go to the documentation of this file.
1 /* SPDX-FileCopyrightText: 2009-2023 Greenbone AG
2  *
3  * SPDX-License-Identifier: GPL-2.0-or-later
4  */
5 
11 #ifndef _GVM_PIDFILE_H
12 #define _GVM_PIDFILE_H
13 
14 #include <glib.h>
15 
16 int
17 pidfile_create (gchar *);
18 void
19 pidfile_remove (gchar *);
20 
21 #endif /* not _GVM_PIDFILE_H */
pidfile_create
int pidfile_create(gchar *)
Create a PID-file.
Definition: pidfile.c:40
pidfile_remove
void pidfile_remove(gchar *)
Remove PID file.
Definition: pidfile.c:87