Merge 1.5.0.5 in from 'maint'
[alt-git.git] / run-command.h
blobff090679a6fecd66bda4fba804a8ab6555571aa9
1 #ifndef RUN_COMMAND_H
2 #define RUN_COMMAND_H
4 enum {
5 ERR_RUN_COMMAND_FORK = 10000,
6 ERR_RUN_COMMAND_EXEC,
7 ERR_RUN_COMMAND_PIPE,
8 ERR_RUN_COMMAND_WAITPID,
9 ERR_RUN_COMMAND_WAITPID_WRONG_PID,
10 ERR_RUN_COMMAND_WAITPID_SIGNAL,
11 ERR_RUN_COMMAND_WAITPID_NOEXIT,
14 struct child_process {
15 const char **argv;
16 pid_t pid;
17 int in;
18 unsigned close_in:1;
19 unsigned no_stdin:1;
20 unsigned git_cmd:1; /* if this is to be git sub-command */
21 unsigned stdout_to_stderr:1;
24 int start_command(struct child_process *);
25 int finish_command(struct child_process *);
26 int run_command(struct child_process *);
28 #define RUN_COMMAND_NO_STDIN 1
29 #define RUN_GIT_CMD 2 /*If this is to be git sub-command */
30 #define RUN_COMMAND_STDOUT_TO_STDERR 4
31 int run_command_v_opt(const char **argv, int opt);
33 #endif