genode/repos/ports/src/app/gdb_monitor/signal_handler_thread.h
Norman Feske ca971bbfd8 Move repositories to 'repos/' subdirectory
This patch changes the top-level directory layout as a preparatory
step for improving the tools for managing 3rd-party source codes.
The rationale is described in the issue referenced below.

Issue #1082
2014-05-14 16:08:00 +02:00

41 lines
765 B
C++

/*
* \brief Signal handler thread
* \author Christian Prochaska
* \date 2011-08-15
*/
/*
* Copyright (C) 2011-2013 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
#ifndef _SIGNAL_HANDLER_THREAD_H_
#define _SIGNAL_HANDLER_THREAD_H_
#include <base/signal.h>
#include <base/thread.h>
using namespace Genode;
namespace Gdb_monitor {
class Signal_handler_thread : public Thread<2*4096>
{
private:
int _pipefd[2];
Signal_receiver *_signal_receiver;
public:
Signal_handler_thread(Signal_receiver *receiver);
void entry();
int pipe_read_fd() { return _pipefd[0]; }
};
}
#endif /* _SIGNAL_HANDLER_THREAD_H_ */