summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2020-08-12LibWeb: Move HTML::AttributeNames file into HTML/ directoryAndreas Kling
2020-08-12HackStudio: Use adopt_own(*new T) instead of OwnPtr(new T)Andreas Kling
2020-08-12Shell: Add create() factory function for PathRedirectionAndreas Kling
2020-08-12Shell: Fix another FdRedirection reference leakAndreas Kling
2020-08-12Shell: Wait for the parent to deal with the PGID stuff before execvp()AnotherTest
2020-08-12Shell: Do not assume that the job has exited after unblock in fgAnotherTest
2020-08-12Shell: Eliminate possible use-after-free in builtin_fg()AnotherTest
2020-08-12Shell: Eliminate reference leak in AST::Execute::run()AnotherTest
2020-08-12Shell: Moves pipelined processes to one process groupAnotherTest
2020-08-12Shell: Show the job id instead of the pid when a job exits in backgroundAnotherTest
2020-08-12Kernel: Allow moving a process to a new pgrp via setpgid()AnotherTest
2020-08-12SystemMonitor: Show PPID, PGID, SIDBen Wiederhake
2020-08-12SystemMonitor: Display the stack of only the selected threadBen Wiederhake
2020-08-12Kernel: Expose thread stacks as separate filesBen Wiederhake
2020-08-12Userland: Make 'tt t' spawn a thread and stand stillBen Wiederhake
2020-08-12LibWeb: Initialize tag/attribute name globals in init-time constructorsAndreas Kling
2020-08-12ScrollBar: Let clicking the gutter scroll by one pageNico Weber
2020-08-12ScrollBar: Simplify ScrollBar::scroll_to_position()Nico Weber
2020-08-12GUI: Rename ScrollBar::scrubber_size() to ScrollBar::visibile_scrubber_size()Nico Weber
2020-08-12GUI: Give MouseEvent shift() / ctrl() / alt() / logo() functionsNico Weber
2020-08-12GUI: Extract a ScrollBar::scroll_to_position methodNico Weber
2020-08-12LibTLS: Re-silence a debug log Ali Mohammad Pur
2020-08-11LibTLS: Avoid extra initialisation of buffers that are initialisedAnotherTest
2020-08-11LibCrypto+LibTLS+Kernel: Switch the Cipher::Mode interface to use SpanAnotherTest
2020-08-11AK: Span<T>::operator=(const T&) => Span<T>::operator=(const Span<T>&)AnotherTest
2020-08-11LibC: Add sa_family_t and in_port_t typesAndreas Kling
2020-08-11LibJS: Assert when exception is not cleared before Interpreter::run()Linus Groh
2020-08-11LibWeb: Clear exceptions in each Document::run_javascript() callLinus Groh
2020-08-11UserspaceEmulator: Remove some silly semicolonsNico Weber
2020-08-11UserspaceEmulator: Log unimplemented instructions with proper backtraceAndreas Kling
2020-08-11Kernel: Make Inode::read_entire() return a KBuffer (not ByteBuffer)Andreas Kling
2020-08-11LibC: Add in6_addr and sockaddr_in6 structsAndreas Kling
2020-08-11LibC: Declare sockaddr_storageAndreas Kling
2020-08-11LibC: Make sure assert() expands to *something* in non-DEBUG buildsAndreas Kling
2020-08-11Kernel: Forward declare struct stat in the syscall API headerAndreas Kling
2020-08-11LibC: Move stat(), lstat() and fstat() to <sys/stat.h>Andreas Kling
2020-08-11mv: Accept (but ignore) -fAndreas Kling
2020-08-11rm: Implement a basic -f modeAndreas Kling
2020-08-11LibELF: Remove unused cruft in ELF::LoaderAndreas Kling
2020-08-11Crypto: Make AES call malloc much less oftenNico Weber
2020-08-11TextEditor: Show pageview URLs in statusbar on hoverLinus Groh
2020-08-11TextEditor: Open links from Web::PageView using Desktop::LauncherLinus Groh
2020-08-11Kernel: Always return from Thread::wait_onTom
2020-08-11Meta: Fix typo in NotesOnWSL.md (#3086)Andrew Mbugua
2020-08-11LibELF: Set ELF::Loader::m_symbol_count in constructorAndreas Kling
2020-08-10Help: Spruce up the UI with some tasteful layout marginsAndreas Kling
2020-08-10LibGfx: Correct copyright years for {Classic,}WindowTheme.{cpp,h}Andreas Kling
2020-08-10Userland: Add a simple dirname(1) utilityAndreas Kling
2020-08-10WindowServer: Limit maximizing windows to top window in modal stackTom
2020-08-10Shell: Fix fd leak with pipesNico Weber