summaryrefslogtreecommitdiffstats
path: root/raul/Thread.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'raul/Thread.hpp')
-rw-r--r--raul/Thread.hpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/raul/Thread.hpp b/raul/Thread.hpp
index 0eb3a9e..02a5e3a 100644
--- a/raul/Thread.hpp
+++ b/raul/Thread.hpp
@@ -30,8 +30,6 @@ struct ThreadImpl;
* Extend this and override the _run method to easily create a thread
* to perform some task.
*
- * The current Thread can be accessed using the get() method.
- *
* \ingroup raul
*/
class Thread : Noncopyable
@@ -39,13 +37,6 @@ class Thread : Noncopyable
public:
virtual ~Thread();
- /** Return the calling thread.
- *
- * If the calling thread does not yet have a Thread object associated with
- * it yet, one will be created with the given name.
- */
- static Thread& get(const std::string& name="");
-
/** Start the thread if it is not already running. */
virtual void start();