1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-26 04:57:44 +00:00

Basic ^C interrupt implementation.

For testing, I made cat put itself into a new process group.
This should eventually be done by sh between fork() and exec().
This commit is contained in:
Andreas Kling 2018-11-02 14:06:48 +01:00
parent 621217ffeb
commit 10b666f69a
11 changed files with 94 additions and 38 deletions

View file

@ -17,7 +17,7 @@ public:
private:
// ^KeyboardClient
virtual void onKeyPress(byte) override;
virtual void onKeyPress(Keyboard::Key) override;
// ^ConsoleImplementation
virtual void onConsoleReceive(byte) override;