summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-05-16LibVT: Tweak input parsing related namesAndreas Kling
2020-05-16LibVT: Switch VT::Line to being backed by 32-bit codepointsAndreas Kling
2020-05-16LibIPC: Allow opt-in UTF-8 validation on message parametersAndreas Kling
2020-05-16Kernel: Remove Process::any_thread()Andreas Kling
2020-05-16Kernel: Let the wait blocker inspect *all* child threads of a processAndreas Kling
2020-05-16Kernel: Sending a signal to a process now goes to the main threadAndreas Kling
2020-05-16Kernel: Remove awkward "#define printf dbgprintf"Andreas Kling
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-05-16Build: Remove -Wno-volatile flagAndreas Kling
2020-05-16Kernel: Remove now-unused KernelInfoPage.hAndreas Kling
2020-05-16Kernel: Add TimeManagement::now_as_timeval()Andreas Kling
2020-05-16Kernel: Remove sys$getdtablesize()Andreas Kling
2020-05-16Kernel: Use copy_to_user() in sys$gettimeofday()Andreas Kling
2020-05-16Kernel: Remove the "kernel info page" used for fast gettimeofday()Andreas Kling
2020-05-16Build: FreeBSD supportDominik Madarasz
2020-05-16AK: Remove experimental clang -Wconsumed stuffAndreas Kling
2020-05-16Kernel: Remove dubious use of "volatile" in E1000 adapter driverAndreas Kling
2020-05-16Kernel: Let's say that IO::delay(N) delays for N microsecondsAndreas Kling
2020-05-16Kernel: Remove dubious use of "volatile" in HPET codeAndreas Kling
2020-05-16Kernel: Use consistent names for kmalloc globals and remove volatileAndreas Kling
2020-05-16Shell: Use DirIterator::SkipParentAndBaseDirShannon Booth
2020-05-16LibELF: Handle DT_SONAME dynamic entriesAndrew Kaster
2020-05-16Build: Disable deprecated volatile warningShannon Booth
2020-05-16Toolchain/Ports: Update to gcc 10.1.0Shannon Booth
2020-05-16Kernel: Annotate UnhandledInterruptHandler::eoi with [[noreturn]]Shannon Booth
2020-05-16LibGUI+WindowServer: Allow applications to set custom cursor bitmapsShannon Booth
2020-05-16Kernel: Tidy up SharedBuffer interfaceShannon Booth
2020-05-16ClipboardHistory: Add a clipboard history applet :^)Sergey Bugaev
2020-05-16FileManager+LibGUI+Userland: Switch clipboard to MIME typesSergey Bugaev
2020-05-15LibM: Fix floor() and floorf() for negative numbersAndreas Kling
2020-05-15LibM: Add floorf() for @rexim :^)Andreas Kling
2020-05-15LibVT: Move out the Line class from Terminal to its own classAndreas Kling
2020-05-15LibCore: Fix timer expiration processingSergey Bugaev
2020-05-15ProfileViewer: Fix opening the kernel imageSergey Bugaev
2020-05-15Shell: Correct program stop behaviourAnotherTest
2020-05-15LibJS: Add side-effect-free version of Value::to_string()Andreas Kling
2020-05-15AK: StringBuilder with 0 initial capacity shouldn't build null StringAndreas Kling
2020-05-15Docs: Update required clang-format version to 10 in CONTRIBUTING.mdLinus Groh
2020-05-15Shell: Print correct errno when execvp() failsSergey Bugaev
2020-05-15LibC: Fix execvp() errnoSergey Bugaev
2020-05-15Kernel: Disallow opening socket filesSergey Bugaev
2020-05-15Base: Allow NotificationServer to access the ClipboardSergey Bugaev
2020-05-15Clipboard: Remove accidentally commited fileSergey Bugaev
2020-05-15Build: Ask GCC to always emit colorful diagnosticsSergey Bugaev
2020-05-15Build: Allow using CMake 3.16Sergey Bugaev
2020-05-15Clipboard: Add missing copyright headerAndreas Kling
2020-05-15js: Throw a regular SyntaxError for errors from the parserLinus Groh
2020-05-15LibJS: Let parser keep track of errorsLinus Groh
2020-05-15LibJS: Remove syntax errors from lexerLinus Groh
2020-05-15LibCore: Make IODevice::can_read_line() constAnotherTest