New command -named_pipe_loop

This commit is contained in:
2013-06-30 16:00:40 +00:00
parent 138098bda3
commit 4c6fa3a86a
13 changed files with 298 additions and 35 deletions

View File

@ -1086,6 +1086,22 @@ ex:;
}
/* Option -named_pipe_loop */
int Xorriso_option_named_pipe_loop(struct XorrisO *xorriso, char *stdin_pipe,
char *stdout_pipe, char *stderr_pipe,
int flag)
{
char *pipe_paths[3];
int ret;
pipe_paths[0]= stdin_pipe;
pipe_paths[1]= stdout_pipe;
pipe_paths[2]= stderr_pipe;
ret= Xorriso_named_pipe_loop(xorriso, pipe_paths, 0);
return(ret);
}
/* Option -no_rc */
int Xorriso_option_no_rc(struct XorrisO *xorriso, int flag)
{