diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-04-03 11:46:29 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2023-04-24 14:08:55 +0300 |
commit | 628f3b2f7975600dee2ee31fc85ed23d2f34c8ab (patch) | |
tree | dc20debec3326ff820d5014b9e26f9f62d83b4aa /drivers/unix/os_unix.h | |
parent | f178cad04a39bc40e759ef50675606b12bb07fff (diff) | |
download | redot-engine-628f3b2f7975600dee2ee31fc85ed23d2f34c8ab.tar.gz |
[OS] Implement and expose to scripting APIs `get_memory_info` method instead of old `get_free_static_memory`.
Diffstat (limited to 'drivers/unix/os_unix.h')
-rw-r--r-- | drivers/unix/os_unix.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/unix/os_unix.h b/drivers/unix/os_unix.h index 03429622ae..86b0e38e92 100644 --- a/drivers/unix/os_unix.h +++ b/drivers/unix/os_unix.h @@ -73,6 +73,8 @@ public: virtual void delay_usec(uint32_t p_usec) const override; virtual uint64_t get_ticks_usec() const override; + 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 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; |