1

add vorgabe06

This commit is contained in:
2022-06-02 13:01:43 +02:00
parent 7b7b375c8c
commit 32b1f2391f
15 changed files with 525 additions and 0 deletions

30
c_os/user/HelloWorldThread.h Executable file
View File

@ -0,0 +1,30 @@
/*****************************************************************************
* *
* H E L L O W O R L D T H R E A D *
* *
*---------------------------------------------------------------------------*
* Beschreibung: Ein einfacher Thread. *
* *
* Autor: Michael Schoettner, HHU, 16.12.2016 *
*****************************************************************************/
#ifndef __hello_world_thread_include__
#define __hello_world_thread_include__
#include "kernel/threads/Thread.h"
class HelloWorldThread : public Thread {
private:
HelloWorldThread (const HelloWorldThread &copy); // Verhindere Kopieren
public:
HelloWorldThread () : Thread () { }
// Thread-Startmethode
void run ();
};
#endif