OS::execute can now read from stderr too when executing with a pipe

This commit is contained in:
Marcelo Fernandez
2017-10-03 15:09:04 -03:00
parent c5ab18f33e
commit 4b695c3bdf
7 changed files with 12 additions and 8 deletions

View File

@@ -674,7 +674,7 @@ void OSUWP::set_cursor_shape(CursorShape p_shape) {
cursor_shape = p_shape;
}
Error OSUWP::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode) {
Error OSUWP::execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id, String *r_pipe, int *r_exitcode, bool read_stderr) {
return FAILED;
};