summaryrefslogtreecommitdiffstats
path: root/raul
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2012-08-16 01:55:42 +0000
committerDavid Robillard <d@drobilla.net>2012-08-16 01:55:42 +0000
commitceffaaf18e99f2fa56f38f53cf3e4ea4f5099be6 (patch)
tree5e7da6ae491e9ab69bdfffcd2fdc4561ca5a4e4c /raul
parent2f719c364449f3e338822e7cc740daac0870cbc9 (diff)
downloadraul-ceffaaf18e99f2fa56f38f53cf3e4ea4f5099be6.tar.gz
raul-ceffaaf18e99f2fa56f38f53cf3e4ea4f5099be6.tar.bz2
raul-ceffaaf18e99f2fa56f38f53cf3e4ea4f5099be6.zip
Remove verbose logging stuff from Thread.
git-svn-id: http://svn.drobilla.net/lad/trunk/raul@4709 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'raul')
-rw-r--r--raul/Thread.hpp8
1 files changed, 1 insertions, 7 deletions
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 <string>
-
#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: