summaryrefslogtreecommitdiff
path: root/Kernel/TTY/TTY.cpp
AgeCommit message (Expand)Author
2021-01-22Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-22Kernel: Unsupported TTY ioctls should return EINVAL gracefullyTom
2021-01-20Kernel+LibC: Turn errno codes into a strongly typed enumAndreas Kling
2021-01-11Kernel: Only send SIGTTOU if TTY termios has TOSTOP flagAndreas Kling
2021-01-11Everywhere: Replace a bundle of dbg with dbgln.asynts
2020-12-31Everywhere: Re-format with clang-format-11Linus Groh
2020-12-21Everywhere: Switch from (void) to [[maybe_unused]] (#4473)Lenny Maiorani
2020-11-30Kernel: Move block condition evaluation out of the SchedulerTom
2020-11-10AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safeTom
2020-10-03Everywhere: Fix more typosLinus Groh
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-09Kernel+LibC+UE: Introduce SIGINFO (generated with ^T)Andreas Kling
2020-09-06Kernel: Remove bogus FIXME in TTY::write()Andreas Kling
2020-08-19Kernel: Distinguish between new and old process groups with equal pgidsAnotherTest
2020-08-10Kernel: PID/PGID typingBen Wiederhake
2020-08-06Kernel: Store TTY's foreground process as a WeakPtr<Process>Andreas Kling
2020-08-06Kernel: Send a SIGCHLD to the parent upon suspension of a processAnotherTest
2020-08-05Kernel: Suppress remaining unobserved KResult return codesBrian Gianforcaro
2020-08-05Kernel: Propagate a few KResults properly in FileSystem subsystemsBrian Gianforcaro
2020-08-04Kernel: Send SIGTTIN and SIGTTOU signals on background TTY read/writeAndreas Kling
2020-08-04Kernel: Make File::write() and File::read() return KResultOr<size_t>Andreas Kling
2020-08-02Kernel: Remove ProcessInspectionHandle and make Process RefCountedTom
2020-07-31Kernel: Remove SmapDisabler in sys$ioctl()Andreas Kling
2020-07-11LibC: Implement tcflush(3)Peter Elliott
2020-07-01Kernel: Turn Thread::current and Process::current into functionsTom
2020-05-23Kernel: Use a FlatPtr for the "argument" to ioctl()Andreas Kling
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