mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-libstb-hal.git
synced 2025-08-27 23:42:43 +02:00
Revert "changed raspi to own thread class"
This reverts commita936057619
. Origin commit data ------------------ Branch: master Commit:9138f023f2
Author: max_10 <max_10@gmx.de> Date: 2018-09-20 (Thu, 20 Sep 2018) ------------------ This commit was generated by Migit
This commit is contained in:
@@ -32,7 +32,7 @@
|
||||
|
||||
#include <set>
|
||||
#include <map>
|
||||
#include <thread_abstraction.h>
|
||||
#include <OpenThreads/Thread>
|
||||
|
||||
#include "init_td.h"
|
||||
#include "lt_debug.h"
|
||||
@@ -69,7 +69,7 @@ static void init_keymap(void)
|
||||
kmap[KEY_F8] = KEY_SLEEP;
|
||||
}
|
||||
|
||||
class Input: public Thread
|
||||
class Input: public OpenThreads::Thread
|
||||
{
|
||||
public:
|
||||
Input();
|
||||
@@ -82,13 +82,13 @@ class Input: public Thread
|
||||
Input::Input()
|
||||
{
|
||||
Init();
|
||||
Thread::start();
|
||||
start();
|
||||
}
|
||||
|
||||
Input::~Input()
|
||||
{
|
||||
running = false;
|
||||
Thread::join();
|
||||
join();
|
||||
}
|
||||
|
||||
static int dirfilter(const struct dirent *d)
|
||||
|
Reference in New Issue
Block a user