summaryrefslogtreecommitdiffstats
path: root/test/sem_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/sem_test.cpp')
-rw-r--r--test/sem_test.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/test/sem_test.cpp b/test/sem_test.cpp
index f3ed065..f8b0741 100644
--- a/test/sem_test.cpp
+++ b/test/sem_test.cpp
@@ -24,8 +24,7 @@ using namespace Raul;
class Waiter : public Raul::Thread {
public:
- Waiter(Semaphore& sem) : _sem(sem) {
- Thread::set_name("Waiter");
+ Waiter(Semaphore& sem) : Raul::Thread("Waiter"), _sem(sem) {
}
private:
@@ -47,9 +46,6 @@ private:
int
main()
{
- Thread& this_thread = Thread::get();
- this_thread.set_name("Main");
-
Semaphore sem(0);
Waiter waiter(sem);
waiter.start();