1
Files
lecture-operating-system-de…/c_os/user/PCSPKdemo.h
2022-07-04 21:24:35 +02:00

20 lines
336 B
C++

#ifndef __PCSPKdemo_INCLUDE_H_
#define __PCSPKdemo_INCLUDE_H_
#include "kernel/Globals.h"
#include "kernel/threads/Thread.h"
class PCSPKdemo : public Thread {
private:
PCSPKdemo(const PCSPKdemo& copy) = delete;
public:
PCSPKdemo() {
kout << "Initialized PCSPKdemo" << endl;
}
void run() override;
};
#endif