diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-02-16 10:40:47 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-02-16 10:40:47 +0100 |
commit | 7210d2ade5cfb9b0928f8d7b363093f6484b1dea (patch) | |
tree | d5fea72d22ed5a79080b729a840e5b4da1c9b231 /Kernel/Process.h | |
parent | 468113422f2b5fd8702f0e3b3c8588e3955cfa4a (diff) | |
download | serenity-7210d2ade5cfb9b0928f8d7b363093f6484b1dea.zip |
Kernel: Remove knowledge about BochsVGADevice from Process.
Diffstat (limited to 'Kernel/Process.h')
-rw-r--r-- | Kernel/Process.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Kernel/Process.h b/Kernel/Process.h index e75b2279ee..3c6396875b 100644 --- a/Kernel/Process.h +++ b/Kernel/Process.h @@ -223,8 +223,6 @@ public: int sys$accept(int sockfd, sockaddr*, socklen_t*); int sys$connect(int sockfd, const sockaddr*, socklen_t); - DisplayInfo set_video_resolution(int width, int height); - bool wait_for_connect(Socket&, int& error); static void initialize(); |