documentation for class Thread added.

This commit is contained in:
Roland Jax
2014-11-16 14:49:14 +01:00
parent ada6a066fe
commit e5452282ad
3 changed files with 43 additions and 2 deletions
+5 -1
View File
@@ -23,9 +23,13 @@
#include "thread.h"
/**
* @brief static function which will be called on thread startup.
* @return void pointer.
*/
static void* runThread(void* arg)
{
return ((Thread *)arg)->run();
return ((Thread*)arg)->run();
}
Thread::~Thread()