diff options
| author | Lennart Poettering <lennart@poettering.net> | 2003-12-23 00:05:15 +0000 | 
|---|---|---|
| committer | Lennart Poettering <lennart@poettering.net> | 2003-12-23 00:05:15 +0000 | 
| commit | 33f01df1c95b43b66e2f0bab2b972dd9e03faeb5 (patch) | |
| tree | 053f3bcff15d9161e6b2f0c942941052de5fb14f /src/exec.h | |
| parent | 51c0330ea15a28d2d7c83a746458dfd5cf1770bc (diff) | |
it compiles and works basically
git-svn-id: file:///home/lennart/svn/public/ivam2/trunk@9 dbf6933d-3bce-0310-9bcc-ed052ba35b35
Diffstat (limited to 'src/exec.h')
| -rw-r--r-- | src/exec.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| @@ -1,9 +1,11 @@  #ifndef fooexechfoo  #define fooexechfoo +#include <sys/types.h> +  typedef void (*process_exit_cb_t) (pid_t pid, int status, void *user); -pid_t child_process_create(const char *file, char *const argv[], process_exit_cb_t cb, void *user); +pid_t child_process_create(const char *file, char *const argv[], int *ifd, int *ofd, process_exit_cb_t cb, void *user);  int child_process_kill(pid_t pid);  int child_process_init(void);  void child_process_done(void); | 
