/* # Copyright (c) 2009 - OpenSLX Project, Computer Center University of Freiburg # # This program is free software distributed under the GPL version 2. # See http://openslx.org/COPYING # # If you have any feedback please consult http://openslx.org/feedback and # send your suggestions, praise, or complaints to feedback@openslx.org # # General information about OpenSLX can be found at http://openslx.org/ # -------------------------------------------------------------------------- # rebootSystemHandler.h # - Handle system reboot requests - interface # -------------------------------------------------------------------------- */ #ifndef REBOOTSYSTEMHANDLER_H_ #define REBOOTSYSTEMHANDLER_H_ #include #include "inputEventHandler.h" /** * Reboot a Linux system. */ class RebootLinuxSystemHandler : public InputEventHandler< input_policy::Require > { public: /** * Send SIGINT to the process with PID 1. */ void doHandle(InputEvent const&, InputEventContext const*); }; #endif /* REBOOTSYSTEMHANDLER_H_ */