diff options
author | Daniel Barkalow <barkalow@iabervon.org> | 2005-12-07 21:04:38 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-12-07 21:05:39 -0800 |
commit | 128aed684d0b3099092b7597c8644599b45b7503 (patch) | |
tree | 52e84bd6a1c9bf70ea8dc44f7759d93cd43f1283 /run-command.h | |
parent | 64224caf888253601b7285ab242f4a12779894b9 (diff) | |
download | git-128aed684d0b3099092b7597c8644599b45b7503.tar.gz git-128aed684d0b3099092b7597c8644599b45b7503.tar.xz |
Clean up file descriptors when calling hooks.
When calling post-update hook, don't leave stdin and stdout connected to
the pushing connection.
Signed-off-by: Daniel Barkalow <barkalow@iabervon.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'run-command.h')
-rw-r--r-- | run-command.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/run-command.h b/run-command.h index 5ee097224..2469eeaef 100644 --- a/run-command.h +++ b/run-command.h @@ -11,6 +11,9 @@ enum { ERR_RUN_COMMAND_WAITPID_NOEXIT, }; +#define RUN_COMMAND_NO_STDIO 1 + +int run_command_v_opt(int argc, char **argv, int opt); int run_command_v(int argc, char **argv); int run_command(const char *cmd, ...); |