4 #define MAX_RUN_COMMAND_ARGS 256
6 ERR_RUN_COMMAND_FORK
= 10000,
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 #define RUN_COMMAND_NO_STDIO 1
15 #define RUN_GIT_CMD 2 /*If this is to be git sub-command */
16 int run_command_v_opt(int argc
, const char **argv
, int opt
);
17 int run_command_v(int argc
, const char **argv
);
18 int run_command(const char *cmd
, ...);