aboutsummaryrefslogtreecommitdiffhomepage
path: root/exec.h
diff options
context:
space:
mode:
Diffstat (limited to 'exec.h')
-rw-r--r--exec.h12
1 files changed, 3 insertions, 9 deletions
diff --git a/exec.h b/exec.h
index 10eda29b..f0a0e148 100644
--- a/exec.h
+++ b/exec.h
@@ -60,22 +60,16 @@ int exec_subshell(const wcstring &cmd, bool preserve_exit_status);
/**
Loops over close until the syscall was run without being
- interrupted. Then removes the fd from the open_fds list.
+ interrupted.
*/
void exec_close(int fd);
/**
- Call pipe(), and add resulting fds to open_fds, the list of opend
- file descriptors for pipes.
+ Call pipe(), and add resulting fds to open_fds, the list of opened
+ file descriptors for pipes. The pipes are marked CLO_EXEC.
*/
int exec_pipe(int fd[2]);
-/* Close all fds in open_fds. This is called from postfork.cpp */
-void close_unused_internal_pipes(const io_chain_t &io);
-
-/* Gets all unused internal pipes into fds */
-void get_unused_internal_pipes(std::vector<int> &fds, const io_chain_t &io);
-
/** Gets the interpreter for a given command */
char *get_interpreter(const char *command, char *interpreter, size_t buff_size);