2005-07-31 21:17:43 +02:00
|
|
|
#ifndef RUN_COMMAND_H
|
|
|
|
#define RUN_COMMAND_H
|
|
|
|
|
|
|
|
enum {
|
|
|
|
ERR_RUN_COMMAND_FORK = 10000,
|
|
|
|
ERR_RUN_COMMAND_EXEC,
|
2007-03-10 03:28:08 -05:00
|
|
|
ERR_RUN_COMMAND_PIPE,
|
2005-07-31 21:17:43 +02:00
|
|
|
ERR_RUN_COMMAND_WAITPID,
|
|
|
|
ERR_RUN_COMMAND_WAITPID_WRONG_PID,
|
|
|
|
ERR_RUN_COMMAND_WAITPID_SIGNAL,
|
|
|
|
ERR_RUN_COMMAND_WAITPID_NOEXIT,
|
|
|
|
};
|
|
|
|
|
2007-03-10 03:28:00 -05:00
|
|
|
struct child_process {
|
|
|
|
const char **argv;
|
2007-03-10 03:28:05 -05:00
|
|
|
pid_t pid;
|
2007-03-10 03:28:08 -05:00
|
|
|
int in;
|
|
|
|
unsigned close_in:1;
|
2007-03-10 03:28:00 -05:00
|
|
|
unsigned no_stdin:1;
|
|
|
|
unsigned git_cmd:1; /* if this is to be git sub-command */
|
|
|
|
unsigned stdout_to_stderr:1;
|
|
|
|
};
|
|
|
|
|
2007-03-10 03:28:05 -05:00
|
|
|
int start_command(struct child_process *);
|
|
|
|
int finish_command(struct child_process *);
|
2007-03-10 03:28:00 -05:00
|
|
|
int run_command(struct child_process *);
|
|
|
|
|
2006-12-30 21:55:22 -05:00
|
|
|
#define RUN_COMMAND_NO_STDIN 1
|
2006-01-10 21:12:17 -05:00
|
|
|
#define RUN_GIT_CMD 2 /*If this is to be git sub-command */
|
2006-12-30 21:55:19 -05:00
|
|
|
#define RUN_COMMAND_STDOUT_TO_STDERR 4
|
2006-12-30 21:55:15 -05:00
|
|
|
int run_command_v_opt(const char **argv, int opt);
|
2005-07-31 21:17:43 +02:00
|
|
|
|
|
|
|
#endif
|