Code

24cdb4eb190b6bea844e7c674ea4caf32462caa0
[git.git] / run-command.h
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_WAITPID,
8         ERR_RUN_COMMAND_WAITPID_WRONG_PID,
9         ERR_RUN_COMMAND_WAITPID_SIGNAL,
10         ERR_RUN_COMMAND_WAITPID_NOEXIT,
11 };
13 struct child_process {
14         const char **argv;
15         pid_t pid;
16         unsigned no_stdin:1;
17         unsigned git_cmd:1; /* if this is to be git sub-command */
18         unsigned stdout_to_stderr:1;
19 };
21 int start_command(struct child_process *);
22 int finish_command(struct child_process *);
23 int run_command(struct child_process *);
25 #define RUN_COMMAND_NO_STDIN 1
26 #define RUN_GIT_CMD          2  /*If this is to be git sub-command */
27 #define RUN_COMMAND_STDOUT_TO_STDERR 4
28 int run_command_v_opt(const char **argv, int opt);
30 #endif