X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fthread.cpp;h=cfc0c37573d02a100df148a433a0bf365b76111f;hb=03d324e20b1062fbc9a6b60106b370c7194a6141;hp=a8c80b664ce47aa126e2089dd691abbaff941696;hpb=967785734be5c3fc6f75da122c2d93ebbb338271;p=libs%2Fcore.git diff --git a/source/core/thread.cpp b/source/core/thread.cpp index a8c80b6..cfc0c37 100644 --- a/source/core/thread.cpp +++ b/source/core/thread.cpp @@ -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