diff options
author | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-05-14 10:28:27 +0200 |
---|---|---|
committer | Fabio Alessandrelli <fabio.alessandrelli@gmail.com> | 2019-05-15 19:24:20 +0200 |
commit | 6622091eafc152f60a8e2ca520c714daf85cadee (patch) | |
tree | 0472ee3636fdb37ce1c8e70d78e7d4423c5229d4 /platform/javascript/os_javascript.h | |
parent | 996abb83e31453b4dcd3f4031a191aba3b392bef (diff) | |
download | redot-engine-6622091eafc152f60a8e2ca520c714daf85cadee.tar.gz |
Fix OS_Javascript execute method
Signature was changed in OS via:
cd4449e7abe97b2bc883e2d182db2cc41eb35f8c
Diffstat (limited to 'platform/javascript/os_javascript.h')
-rw-r--r-- | platform/javascript/os_javascript.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/os_javascript.h b/platform/javascript/os_javascript.h index a9f9e23463..f7ce28e660 100644 --- a/platform/javascript/os_javascript.h +++ b/platform/javascript/os_javascript.h @@ -137,7 +137,7 @@ public: void run_async(); bool main_loop_iterate(); - virtual Error execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id = NULL, String *r_pipe = NULL, int *r_exitcode = NULL, bool read_stderr = false); + virtual Error execute(const String &p_path, const List<String> &p_arguments, bool p_blocking, ProcessID *r_child_id = NULL, String *r_pipe = NULL, int *r_exitcode = NULL, bool read_stderr = false, Mutex *p_pipe_mutex = NULL); virtual Error kill(const ProcessID &p_pid); virtual int get_process_id() const; |