]> Dogcows Code - chaz/yoink/blobdiff - src/moof/thread.cc
remove some unused stlplus modules
[chaz/yoink] / src / moof / thread.cc
index c1e501c6a378ea22774283c341c2ee43269b9bd9..03c04f7b8ab70c53dd074065fd6a1a483970068a 100644 (file)
@@ -1,13 +1,11 @@
 
-/*]  Copyright (c) 2009-2010, Charles McGarvey  [**************************
+/*]  Copyright (c) 2009-2011, Charles McGarvey  [*****************************
 **]  All rights reserved.
 *
-* vi:ts=4 sw=4 tw=75
-*
 * Distributable under the terms and conditions of the 2-clause BSD license;
 * see the file COPYING for a complete text of the license.
 *
-**************************************************************************/
+*****************************************************************************/
 
 #include "runloop.hh"
 #include "thread.hh"
@@ -20,7 +18,6 @@ thread::thread() :
        thread_(0),
        runloop_(new moof::runloop) {}
 
-
 thread thread::detach(const function& function)
 {
        thread* thread = new moof::thread;
@@ -38,7 +35,6 @@ thread thread::detach(timer& timer)
        return *thread;
 }
 
-
 void thread::spawn(thread* thread)
 {
        thread->thread_ = SDL_CreateThread(&thread::run, (void*)thread);
@@ -52,7 +48,6 @@ int thread::run(void* arg)
        return code;
 }
 
-
 void thread::kill()
 {
        if (thread_)
@@ -62,7 +57,6 @@ void thread::kill()
        }
 }
 
-
 moof::runloop& thread::runloop() const
 {
        return *runloop_;
This page took 0.01802 seconds and 4 git commands to generate.