summaryrefslogtreecommitdiff
path: root/Userland
AgeCommit message (Expand)Author
2019-12-11Kernel: Implement a simple process time profilerAndreas Kling
2019-12-09LibGUI: Make GMenu inherit from CObjectAndreas Kling
2019-12-09purge: Add a small command-line utility for purging all volatile memoryAndreas Kling
2019-12-09AK: Use size_t for the length of stringsAndreas Kling
2019-12-02Kernel: Crash on memory access in non-readable regionsAndreas Kling
2019-12-02Userland: Add the cal command (#838)Andrés Vieira
2019-11-29modunload: Take the module-to-unload as a command-line argumentAndreas Kling
2019-11-29jp: Print double-quotes around string values in outputAndreas Kling
2019-11-29modload: Take the module-to-load as a command-line argumentAndreas Kling
2019-11-29Kernel: Disallow syscalls from writeable memoryAndreas Kling
2019-11-28Kernel: Implement basic module unloading :^)Andreas Kling
2019-11-28Kernel: Implement very simple kernel module loadingAndreas Kling
2019-11-28Kernel+ifconfig: Add an MTU value to NetworkAdapterAndreas Kling
2019-11-26Kernel: Make syscall counters and page fault counters per-threadAndreas Kling
2019-11-26Kernel: Expose per-thread information in /proc/allAndreas Kling
2019-11-26ps: Show "/dev/pts/0" as "pts/0" instead of "0"Andreas Kling
2019-11-25Userland: Add keymap program.Hüseyin ASLITÜRK
2019-11-24LibProtocol: Add a Download object so users don't have to manage ID'sAndreas Kling
2019-11-23pro: Take the URL to download as a command-line argumentAndreas Kling
2019-11-23ProtocolServer: Send the download payload to clients as a shared bufferAndreas Kling
2019-11-23pro: Add a little userland utility for testing ProtocolServerAndreas Kling
2019-11-22AudioServer: Allow muting the system audioAndreas Kling
2019-11-18Kernel+LibPthread: pthread_create handles pthread_attr_tAndrew Kaster
2019-11-17Kernel+LibC: Remove the isatty() syscallAndreas Kling
2019-11-17Kernel: Implement some basic stack pointer validationAndreas Kling
2019-11-16LibPthread: Implement a basic first pthread mutexAndreas Kling
2019-11-14Kernel+LibPthread: Implement pthread_join()Andreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-06Revert "LibHTML: Rename parse_html() => parse_html_document()"Andreas Kling
2019-11-06LibHTML: Rename parse_html() => parse_html_document()Andreas Kling
2019-11-05disk_benchmark: Add a -c flag to enable use of disk cachesAndreas Kling
2019-11-04Userland: Add syscall programMauri de Souza Nunes
2019-11-04Userland: Add the utility "nl" (number line) (#693)balatt
2019-11-04wc: Rewritten with added features (#690)balatt
2019-11-03cat: Use a 32 KB I/O buffer here to improve "cat a > b" scenarioAndreas Kling
2019-11-02cp: Fail immediately if there's not enough space for the destinationAndreas Kling
2019-11-02cp: Read/write 32 KB at a time to go faster :^)Andreas Kling
2019-11-02disk_benchmark: Use 64-bit values for bytes-per-second valuesAndreas Kling
2019-11-02cp: Try to pre-size the destination file to the final size up frontAndreas Kling
2019-10-31Userland: cat no longer tries to open "cat"balatt
2019-10-29cat: Updated to handle multiple input files (#694)balatt
2019-10-19ls: Fix alignment of device files in long mode (ls -l)Andreas Kling
2019-10-19ls: Add -t and -r flagsAndreas Kling
2019-10-19aplay: Fixed incomplete playback of filesTill Mayer
2019-10-09LibHTML: Rename Document::normalize() to fixup() and always do itAndreas Kling
2019-10-05LibHTML: Make StyleResolver responsible for loading the default styleAndreas Kling
2019-09-30ByteBuffer: Remove pointer() in favor of data()Andreas Kling
2019-09-29FileManager+LibGUI+html: Add an icon to represent HTML filesAndreas Kling
2019-09-29html: Set the window title based on the HTML document's titleAndreas Kling
2019-09-28Userland+LibHTML: Add the html commandSergey Bugaev