summaryrefslogtreecommitdiff
path: root/Kernel/TTY
AgeCommit message (Expand)Author
2020-02-20AK: Use size_t for CircularQueue and CircularDequeAndreas Kling
2020-02-18TTY: Reset VGA start row when setting graphical TTYJesse Buhagiar
2020-02-17Kernel: Replace "current" with Thread::current and Process::currentAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-02-09Kernel: Apply changes to use LibBareMetal definitionsLiav A
2020-01-28Kernel: Tweak some include statementsAndreas Kling
2020-01-25Kernel: Unbreak canonical mode TTY erase after LibVT changesAndreas Kling
2020-01-20Kernel: Make DoubleBuffer use a KBuffer instead of kmalloc()ingAndreas Kling
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