diff options
-rw-r--r-- | include/threadengines/threadengine_pthread.h | 8 | ||||
-rw-r--r-- | include/threadengines/threadengine_win32.h | 8 |
2 files changed, 0 insertions, 16 deletions
diff --git a/include/threadengines/threadengine_pthread.h b/include/threadengines/threadengine_pthread.h index 253e8d223..e86c0b1bb 100644 --- a/include/threadengines/threadengine_pthread.h +++ b/include/threadengines/threadengine_pthread.h @@ -52,14 +52,6 @@ class CoreExport ThreadEngine * derived object. */ void Start(Thread* thread_to_init); - - /** Returns the thread engine's name for display purposes - * @return The thread engine name - */ - const std::string GetName() - { - return "posix-thread"; - } }; class CoreExport ThreadData diff --git a/include/threadengines/threadengine_win32.h b/include/threadengines/threadengine_win32.h index 59848bd44..45be0ff06 100644 --- a/include/threadengines/threadengine_win32.h +++ b/include/threadengines/threadengine_win32.h @@ -52,14 +52,6 @@ class CoreExport ThreadEngine * derived object. */ void Start(Thread* thread_to_init); - - /** Returns the thread engine's name for display purposes - * @return The thread engine name - */ - const std::string GetName() - { - return "windows-thread"; - } }; class CoreExport ThreadData |