]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread.cpp
Style and comment updates
[libs/core.git] / source / core / thread.cpp
index a8c80b664ce47aa126e2089dd691abbaff941696..cfc0c37573d02a100df148a433a0bf365b76111f 100644 (file)
@@ -43,10 +43,6 @@ Thread::~Thread()
        delete priv_;
 }
 
-/**
-Waits for the thread to exit.  Calling this from the thread will cause a
-deadlock.
-*/
 void Thread::join()
 {
        if(!launched_)
@@ -60,9 +56,6 @@ void Thread::join()
        launched_ = false;
 }
 
-/**
-Violently terminates the thread.
-*/
 void Thread::kill()
 {
 #ifdef WIN32