diff options
author | RĂ©mi Verschelde <remi@verschelde.fr> | 2022-02-16 09:34:53 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-16 09:34:53 +0100 |
commit | f6f1593db43219e337817463bc02ebce38d95838 (patch) | |
tree | eb92fa07830d91965888042c0b36026194eae4ba /core/os | |
parent | 7989149b917c096af67a0566398bee4de83993ac (diff) | |
parent | ee7cd9a3a14415722c1086a3bde02c2e4d0fd0eb (diff) |
Merge pull request #44716 from Calinou/os-add-get-processor-name
Diffstat (limited to 'core/os')
-rw-r--r-- | core/os/os.cpp | 4 | ||||
-rw-r--r-- | core/os/os.h | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 0032e8e4bc..9558a6978e 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -358,6 +358,10 @@ int OS::get_processor_count() const { return 1; } +String OS::get_processor_name() const { + return ""; +} + bool OS::can_use_threads() const { #ifdef NO_THREADS return false; diff --git a/core/os/os.h b/core/os/os.h index 188900a070..808d704b3d 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -302,6 +302,7 @@ public: virtual void set_exit_code(int p_code); virtual int get_processor_count() const; + virtual String get_processor_name() const; virtual int get_default_thread_pool_size() const { return get_processor_count(); } virtual String get_unique_id() const; |