summaryrefslogtreecommitdiffstats
path: root/drivers/unix/os_unix.h
diff options
context:
space:
mode:
authorbruvzg <7645683+bruvzg@users.noreply.github.com>2023-10-19 14:35:10 +0300
committerbruvzg <7645683+bruvzg@users.noreply.github.com>2024-03-27 11:41:16 +0200
commit082b420c0ab6ddb7cc658b929124893ee2ad72b2 (patch)
treea5f1b40945aaffbcc01c2195ce18b939640c3105 /drivers/unix/os_unix.h
parent7d151c83811f8ac8873439826c16d88c83aba12f (diff)
downloadredot-engine-082b420c0ab6ddb7cc658b929124893ee2ad72b2.tar.gz
Implement `OS.execute_with_pipe` method to run process with redirected stdio.
Implement `pipe://*` path handling for creation of named pipes.
Diffstat (limited to 'drivers/unix/os_unix.h')
-rw-r--r--drivers/unix/os_unix.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h
index d3393c98ec..abbaf9b8cd 100644
--- a/drivers/unix/os_unix.h
+++ b/drivers/unix/os_unix.h
@@ -76,6 +76,7 @@ public:
virtual Dictionary get_memory_info() const override;
virtual Error execute(const String &p_path, const List<String> &p_arguments, String *r_pipe = nullptr, int *r_exitcode = nullptr, bool read_stderr = false, Mutex *p_pipe_mutex = nullptr, bool p_open_console = false) override;
+ virtual Dictionary execute_with_pipe(const String &p_path, const List<String> &p_arguments) override;
virtual Error create_process(const String &p_path, const List<String> &p_arguments, ProcessID *r_child_id = nullptr, bool p_open_console = false) override;
virtual Error kill(const ProcessID &p_pid) override;
virtual int get_process_id() const override;