]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/proc.h
Add Doxygen @file documentation to each source and header file
[ngircd-alex.git] / src / ngircd / proc.h
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2010 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  */
11
12 #ifndef __proc_h__
13 #define __proc_h__
14
15 /**
16  * @file
17  * Process management (header)
18  */
19
20 /** Process status. This struct must not be accessed directly! */
21 typedef struct _Proc_Stat {
22         pid_t pid;      /* PID of the child process or 0 if none */
23         int pipe_fd;    /* Pipe file descriptor or -1 if none */
24 } PROC_STAT;
25
26 #define Proc_InProgress(x)      ((x)->pid != 0)
27 #define Proc_GetPipeFd(x)       ((x)->pipe_fd)
28
29 GLOBAL void Proc_InitStruct PARAMS((PROC_STAT *proc));
30
31 GLOBAL pid_t Proc_Fork PARAMS((PROC_STAT *proc, int *pipefds,
32                                void (*cbfunc)(int, short), int timeout));
33
34 GLOBAL void Proc_GenericSignalHandler PARAMS((int Signal));
35
36 GLOBAL size_t Proc_Read PARAMS((PROC_STAT *proc, void *buffer, size_t buflen));
37
38 #endif
39
40 /* -eof- */