summaryrefslogtreecommitdiff
path: root/Kernel/TTY/TTY.cpp
AgeCommit message (Expand)Author
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-09Kernel: ioctl(TCSETSF) on a TTY should flush inputAndreas Kling
2020-04-10Kernel: Add explicit offset parameter to File::read etcConrad Pankoff
2020-03-26Kernel: Make ^W and ^U actually erase charactersAndreas Kling
2020-02-27TTY: Use dbg() instead of dbgprintf()Liav A
2020-02-26Kernel: Disallow assigning a TTY to an arbitrary process group IDAndreas Kling
2020-02-20AK: Use size_t for CircularQueue and CircularDequeAndreas Kling
2020-02-17Kernel: Replace "current" with Thread::current and Process::currentAndreas Kling
2020-02-16Kernel: Move all code into the Kernel namespaceAndreas Kling
2020-01-25Kernel: Unbreak canonical mode TTY erase after LibVT changesAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel: Require "tty" for ioctl() on TTY and MasterPTYAndreas Kling
2020-01-12Kernel: Put termios debug spam behind TTY_DEBUGAndreas 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-20TTY: Implement Canonical mode and basic echoing.Drew Stratford
2019-10-18Kernel: Keep TTY names in character buffers instead of StringsAndreas Kling
2019-08-23Kernel: Use IteratorDecision in Process::for_each_in_pgrp()Andreas Kling
2019-08-12Kernel: Use a CircularQueue for input rather than a DoubleBufferConrad Pankoff
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.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-04-29Kernel: Have File virtuals take a FileDescriptor& rather than a Process&.Andreas Kling
2019-04-03Kernel: Move TTY-related files into Kernel/TTY/.Andreas Kling