diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-01-15 06:30:19 +0100 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-01-15 06:30:19 +0100 |
commit | 2f74c2f43009723c996f508f423eab3013b47792 (patch) | |
tree | c63ab495172eec96867ff28ffcffb5fbcbca0c98 /Kernel/i386.cpp | |
parent | ecb4ab0943530794fb00a0a6e2a82e3e94e2f9a3 (diff) | |
download | serenity-2f74c2f43009723c996f508f423eab3013b47792.zip |
Add basic PTY support.
For now, there are four hard-coded PTYs: /dev/pt{m,s}[0123]
Use this in the Terminal to open a pty pair and spawn a shell.
Diffstat (limited to 'Kernel/i386.cpp')
-rw-r--r-- | Kernel/i386.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Kernel/i386.cpp b/Kernel/i386.cpp index d24dac9c1c..221bb5ef7a 100644 --- a/Kernel/i386.cpp +++ b/Kernel/i386.cpp @@ -7,7 +7,7 @@ #include "IRQHandler.h" #include "PIC.h" -#define PAGE_FAULT_DEBUG +//#define PAGE_FAULT_DEBUG struct DescriptorTablePointer { word size; |