OpenVAS Scanner
6.0.0~git
src
processes.h
Go to the documentation of this file.
1
/* Portions Copyright (C) 2009-2019 Greenbone Networks GmbH
2
* Portions Copyright (C) 2006 Software in the Public Interest, Inc.
3
* Based on work Copyright (C) 1998 - 2006 Tenable Network Security, Inc.
4
*
5
* SPDX-License-Identifier: GPL-2.0-only
6
*
7
* This program is free software; you can redistribute it and/or
8
* modify it under the terms of the GNU General Public License
9
* version 2 as published by the Free Software Foundation.
10
*
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
19
*/
20
26
#ifndef _OPENVAS_THREADS_H
27
#define _OPENVAS_THREADS_H
28
29
#include <sys/types.h>
/* for pid_t */
30
31
typedef
void (*
process_func_t
) (
void
*);
32
pid_t
33
create_process
(
process_func_t
,
void
*);
34
int
terminate_process
(pid_t);
35
36
#endif
create_process
pid_t create_process(process_func_t, void *)
Create a new process (fork).
Definition:
processes.c:81
process_func_t
void(* process_func_t)(void *)
Definition:
processes.h:31
terminate_process
int terminate_process(pid_t)
Definition:
processes.c:47
Generated on Sat Apr 13 2019 18:40:09 for OpenVAS Scanner by
1.8.14