From ceffaaf18e99f2fa56f38f53cf3e4ea4f5099be6 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 16 Aug 2012 01:55:42 +0000 Subject: Remove verbose logging stuff from Thread. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4709 a436a847-0d15-0410-975c-d299462d15a1 --- raul/Thread.hpp | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'raul') diff --git a/raul/Thread.hpp b/raul/Thread.hpp index f6f57d3..fa5a3cb 100644 --- a/raul/Thread.hpp +++ b/raul/Thread.hpp @@ -17,8 +17,6 @@ #ifndef RAUL_THREAD_HPP #define RAUL_THREAD_HPP -#include - #include "raul/Noncopyable.hpp" namespace Raul { @@ -56,16 +54,13 @@ public: */ virtual bool set_scheduling(bool realtime, unsigned priority); - /** Return the name of this thread. */ - const std::string& name() const { return _name; } - protected: /** Construct a thread. * * Note this does not actually start a thread to prevent race conditions * during construction. To actually begin execution, call start(). */ - explicit Thread(const std::string& name=""); + explicit Thread(); /** Thread function to execute. * @@ -81,7 +76,6 @@ private: static void* _static_run(void* me); ThreadImpl* _impl; - std::string _name; bool _thread_exists; protected: -- cgit v1.2.1