summaryrefslogtreecommitdiff
path: root/core/os/thread.cpp
diff options
context:
space:
mode:
authorAriel Manzur <ariel@godotengine.org>2015-12-17 06:24:27 -0300
committerAriel Manzur <ariel@godotengine.org>2015-12-17 06:24:27 -0300
commit10298b9534937c8662fe6bea6dcf79457bd53970 (patch)
treef329c7c04aa20a5e6d1b3fd4a7d366bbf49842cc /core/os/thread.cpp
parent6c3c20fc35cfe324a55409bd3d8fb0f0028774fe (diff)
thread set name
Diffstat (limited to 'core/os/thread.cpp')
-rw-r--r--core/os/thread.cpp5
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()
{
}