diff options
author | Ariel Manzur <ariel@godotengine.org> | 2015-12-17 06:24:27 -0300 |
---|---|---|
committer | Ariel Manzur <ariel@godotengine.org> | 2015-12-17 06:24:27 -0300 |
commit | 10298b9534937c8662fe6bea6dcf79457bd53970 (patch) | |
tree | f329c7c04aa20a5e6d1b3fd4a7d366bbf49842cc /core/os/thread.cpp | |
parent | 6c3c20fc35cfe324a55409bd3d8fb0f0028774fe (diff) |
thread set name
Diffstat (limited to 'core/os/thread.cpp')
-rw-r--r-- | core/os/thread.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/core/os/thread.cpp b/core/os/thread.cpp index 96b0f561ca..53db62c176 100644 --- a/core/os/thread.cpp +++ b/core/os/thread.cpp @@ -58,6 +58,11 @@ void Thread::wait_to_finish(Thread *p_thread) { } +Error Thread::set_name(const String &p_name) { + + return ERR_UNAVAILABLE; +}; + Thread::Thread() { } |