]> git.tdb.fi Git - libs/core.git/blobdiff - source/core/thread.cpp
Check that the option actually has a short name
[libs/core.git] / source / core / thread.cpp
index b382f067a3588868e4a0638dc577eb3059593b42..cfc0c37573d02a100df148a433a0bf365b76111f 100644 (file)
@@ -1,10 +1,3 @@
-/* $Id$
-
-This file is part of libmspcore
-Copyright © 2006 Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifdef WIN32
 #include <windows.h>
 #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