X-Git-Url: http://git.tdb.fi/?p=libs%2Fcore.git;a=blobdiff_plain;f=source%2Fcore%2Fthread.cpp;h=cfc0c37573d02a100df148a433a0bf365b76111f;hp=b382f067a3588868e4a0638dc577eb3059593b42;hb=79482ba7aea1b79c7a310c940cc0292532ef3bcb;hpb=5a9200b48b8455185b0fcbd55c69deca88a1184c diff --git a/source/core/thread.cpp b/source/core/thread.cpp index b382f06..cfc0c37 100644 --- a/source/core/thread.cpp +++ b/source/core/thread.cpp @@ -1,10 +1,3 @@ -/* $Id$ - -This file is part of libmspcore -Copyright © 2006 Mikko Rasa, Mikkosoft Productions -Distributed under the LGPL -*/ - #ifdef WIN32 #include #else @@ -50,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_) @@ -67,9 +56,6 @@ void Thread::join() launched_ = false; } -/** -Violently terminates the thread. -*/ void Thread::kill() { #ifdef WIN32