00001 00005 #ifndef FISH_EXEC_H 00006 00009 #define FISH_EXEC_H 00010 00011 #include <wchar.h> 00012 00013 #include "proc.h" 00014 #include "util.h" 00015 00019 #define PIPE_ERROR _(L"An error occurred while setting up pipe") 00020 00042 void exec( job_t *j ); 00043 00054 __warn_unused int exec_subshell( const wchar_t *cmd, 00055 array_list_t *l ); 00056 00057 00062 void exec_close( int fd ); 00063 00068 int exec_pipe( int fd[2]); 00069 00070 #endif
1.4.4