summaryrefslogtreecommitdiff
path: root/platform/uwp
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2020-01-23 08:19:09 +0100
committerGitHub <noreply@github.com>2020-01-23 08:19:09 +0100
commitc9cf6b102f65e277613a0ff2f2bcc54f7bff0f1d (patch)
tree7fab75c48809ecec2bdd9c6750203eb33d7812b1 /platform/uwp
parent05fc26de1cd4b11f9f3351b42fb4c5b7c626856d (diff)
parent90a1f8d8a7789c6fa9191c8684cd24edca066577 (diff)
Merge pull request #35454 from Calinou/os-execute-default-blocking
Make `OS.execute()` blocking by default if not specified
Diffstat (limited to 'platform/uwp')
-rw-r--r--platform/uwp/os_uwp.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/uwp/os_uwp.h b/platform/uwp/os_uwp.h
index edc63bd637..e032b501f9 100644
--- a/platform/uwp/os_uwp.h
+++ b/platform/uwp/os_uwp.h
@@ -205,7 +205,7 @@ public:
virtual void delay_usec(uint32_t p_usec) const;
virtual uint64_t get_ticks_usec() const;
- 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 execute(const String &p_path, const List<String> &p_arguments, bool p_blocking = true, 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 bool has_environment(const String &p_var) const;