X-Git-Url: http://git.tdb.fi/?a=blobdiff_plain;f=source%2Fcore%2Fthread.cpp;fp=source%2Fcore%2Fthread.cpp;h=cfc0c37573d02a100df148a433a0bf365b76111f;hb=1f0843257065789231a9949e0a81b79afd7bbebe;hp=a8c80b664ce47aa126e2089dd691abbaff941696;hpb=62a984b46e08740d19cb055f01be3365982f6b9d;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