26 #ifndef _OPENVAS_THREADS_H 27 #define _OPENVAS_THREADS_H 29 #include <sys/types.h> pid_t create_process(process_func_t, void *)
Create a new process (fork).
void(* process_func_t)(void *)
int terminate_process(pid_t)
Send SIGTERM to the pid process. Try to wait the the process. In case of the process has still not ch...