summaryrefslogtreecommitdiff
path: root/Kernel/TTY
AgeCommit message (Expand)Author
2020-01-18Kernel: Move setting file flags and r/w mode to VFS::open()Sergey Bugaev
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-17Kernel: Move kernel above the 3GB virtual address markAndreas Kling
2020-01-12Kernel: Require "tty" for ioctl() on TTY and MasterPTYAndreas Kling
2020-01-12Kernel: Put termios debug spam behind TTY_DEBUGAndreas Kling
2020-01-04Kernel: File::open() should apply r/w mode from the provided optionsAndreas Kling
2019-12-20VirtualConsole: use memmove for an overlapping copyjoshua stein
2019-12-09Kernel: Give PTY's *actually* unique major ID'sAndreas Kling
2019-12-09TTY: Change the MasterPTY device major to not conflict with /dev/psauxAndreas Kling
2019-11-27Kernel: Demangle userspace ELF symbols in backtracesAndreas Kling
2019-11-23Revert "Kernel: Move Kernel mapping to 0xc0000000"Andreas Kling
2019-11-22Kernel: Move Kernel mapping to 0xc0000000Jesse Buhagiar
2019-11-06AK: Remove unused AK::not_implemented()Andreas Kling
2019-11-04Kernel: Make File's can_read/can_write take a const FileDescription&Andreas Kling
2019-11-02TTY: Don't flush input on every characterAndreas Kling
2019-11-01TTY: Flush input on signal character.Drew Stratford
2019-10-30TTY: Properly implement echo in VirtualConsole.Drew Stratford
2019-10-24TTY: MasterPTY should fail to ioctl() if slave is goneAndreas Kling
2019-10-24TTY: Forward TIOCGPGRP from MasterPTY to SlavePTYAndreas Kling
2019-10-20TTY: Implement Canonical mode and basic echoing.Drew Stratford
2019-10-18Revert "Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ing"Andreas Kling
2019-10-18Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ingAndreas Kling
2019-10-18Kernel: VirtualConsole can use kmalloc_eternal() for permanent stuffAndreas Kling
2019-10-18Kernel: Keep TTY names in character buffers instead of StringsAndreas Kling
2019-09-16Kernel: Move kmalloc() into a Kernel/Heap/ directoryAndreas Kling
2019-09-06AK: Rename <AK/AKString.h> to <AK/String.h>Andreas Kling
2019-08-23Kernel: Give each TTY 1 KB of input bufferAndreas Kling
2019-08-23Kernel: Use IteratorDecision in Process::for_each_in_pgrp()Andreas Kling
2019-08-18Kernel: Disable VGA console in graphical modeConrad Pankoff
2019-08-17DevPtsFS: Do not assume there is one of itSergey Bugaev
2019-08-12Kernel: Use a CircularQueue for input rather than a DoubleBufferConrad Pankoff
2019-08-12VirtualConsole: Only consume data from key-down eventsConrad Pankoff
2019-08-12Kernel: Restore alt+n hijacking for virtual console switchingConrad Pankoff
2019-08-11Kernel: Customize absolute_path() for more file typesSergey Bugaev
2019-08-11FileDescription: Disallow construction with a null FileAndreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-21Change "retain" to "ref" in various comments.Andreas Kling
2019-06-21AK: Rename RetainPtr => RefPtr and Retained => NonnullRefPtr.Andreas Kling
2019-06-21AK: Rename Retainable => RefCounted.Andreas Kling
2019-06-13Kernel: Rename "descriptor" to "description" where appropriate.Andreas Kling
2019-06-07Kernel: Move i386.{cpp,h} => Arch/i386/CPU.{cpp,h}Andreas Kling
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07Kernel: Run clang-format on everything.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
2019-06-06TTY: Generate SIGTSTP if cc[VSUSP] is pressed.Andreas Kling
2019-06-01Kernel: Make File::absolute_path() const.Andreas Kling
2019-05-31Update Badge<T> instantiations to simply be {}.Andreas Kling
2019-05-28Add clang-format fileRobin Burchell
2019-05-08Replace various copies of parse_uint(String) with String::to_uint().Andreas Kling
2019-05-03Kernel: Make Socket inherit from File.Andreas Kling