mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:37:35 +00:00
Kernel: Remove GUIEventDevice.
It's no longer used since all communication now happens across sockets. :^)
This commit is contained in:
parent
e9d6fbfb47
commit
18210c606d
9 changed files with 3 additions and 70 deletions
|
@ -14,7 +14,6 @@
|
|||
#include <Kernel/RandomDevice.h>
|
||||
#include <Kernel/Ext2FileSystem.h>
|
||||
#include <Kernel/VirtualFileSystem.h>
|
||||
#include "GUIEventDevice.h"
|
||||
#include "MemoryManager.h"
|
||||
#include "ProcFS.h"
|
||||
#include "RTC.h"
|
||||
|
@ -41,7 +40,6 @@ VirtualConsole* tty2;
|
|||
VirtualConsole* tty3;
|
||||
Keyboard* keyboard;
|
||||
PS2MouseDevice* ps2mouse;
|
||||
GUIEventDevice* gui_event_device;
|
||||
NullDevice* dev_null;
|
||||
VFS* vfs;
|
||||
|
||||
|
@ -85,7 +83,6 @@ static void init_stage2()
|
|||
|
||||
vfs->register_character_device(*keyboard);
|
||||
vfs->register_character_device(*ps2mouse);
|
||||
vfs->register_character_device(*gui_event_device);
|
||||
vfs->register_character_device(*tty0);
|
||||
vfs->register_character_device(*tty1);
|
||||
vfs->register_character_device(*tty2);
|
||||
|
@ -157,7 +154,6 @@ void init()
|
|||
|
||||
keyboard = new Keyboard;
|
||||
ps2mouse = new PS2MouseDevice;
|
||||
gui_event_device = new GUIEventDevice;
|
||||
dev_null = new NullDevice;
|
||||
|
||||
VirtualConsole::initialize();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue