]> git.ipfire.org Git - thirdparty/git.git/blame_incremental - run-command.h
Split run_command into two halves (start/finish)
[thirdparty/git.git] / run-command.h
... / ...
CommitLineData
1#ifndef RUN_COMMAND_H
2#define RUN_COMMAND_H
3
4enum {
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};
12
13struct 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};
20
21int start_command(struct child_process *);
22int finish_command(struct child_process *);
23int run_command(struct child_process *);
24
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
28int run_command_v_opt(const char **argv, int opt);
29
30#endif