summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-11-17LibC: isatty() should return 1 for success, 0 for errorAndreas Kling
2019-11-17Docs: Add note about EINVAL to isatty(3)Andreas Kling
2019-11-17Docs: Add isatty(3) man pageAndreas Kling
2019-11-17Kernel+LibC: Remove the isatty() syscallAndreas Kling
2019-11-17Docs: Add uname(1) and uname(2) man pagesAndreas Kling
2019-11-17Kernel: Let's have sys$uname() report "i686" instead of "i386"Andreas Kling
2019-11-17Docs: Add info about -T and -t to crash(1)Andreas Kling
2019-11-17Ext2FS: Rename allocate_inode() => find_a_free_inode()Andreas Kling
2019-11-17Ext2FS: Writing to a slow symlink should not treat it like a fast oneAndreas Kling
2019-11-17Ext2FS: Remove unnecessary extra cache lookup in get_inode()Andreas Kling
2019-11-17Ext2FS: Add some FIXME's while browsing this codeAndreas Kling
2019-11-17Kernel: Just hang if VFS::mount_root() failsAndreas Kling
2019-11-17Kernel+LibPthread+LibC: Create secondary thread stacks in userspaceAndreas Kling
2019-11-17LibDraw: Add Rect::from_two_points(Point, Point)Andreas Kling
2019-11-17LibC: Oopsie, add the missing semicolons to __bswap32() and __bswap64()Andreas Kling
2019-11-17LibC: Add back __bswap{16,32,64}() to endian.hAndreas Kling
2019-11-17LibC: Unbreak endian.hAndreas Kling
2019-11-17Kernel+SystemMonitor: Show VM region "shared" and "stack" bits in UIAndreas Kling
2019-11-17Kernel: Implement some basic stack pointer validationAndreas Kling
2019-11-16HackStudio: Move the rubber-banding state into CursorToolAndreas Kling
2019-11-16HackStudio: Fill the selection rubber-band with some nice alpha colorAndreas Kling
2019-11-16LibDraw: Add support for colors with alpha in Painter::fill_rect()Andreas Kling
2019-11-16HackStudio: Allow rubber-band selection of widgetsAndreas Kling
2019-11-16LibC: Move realpath() to <stdlib.h>Andreas Kling
2019-11-16LibC: Move the creat() and open() families to <fcntl.h>Andreas Kling
2019-11-16Ext2FS: Minor cleanup, remove an unused functionAndreas Kling
2019-11-16LibC: use GCC __builtin_bswap{16,32,64} to provide __bswap functionsØrjan Malde
2019-11-16LibC: fix arpa/inet.h guardsØrjan Malde
2019-11-16LibC: properly populate endian.hØrjan Malde
2019-11-16Ports: Build ncurses with --with-termlibAndreas Kling
2019-11-16Port: NanoBrandon Scott
2019-11-16LibC: Implemented getc_unlocked, stubbed flockfileBrandon Scott
2019-11-16LibC: Implemented mkstemp in stdlibBrandon Scott
2019-11-16LibC: Added missing signal flagsBrandon Scott
2019-11-16LibC: Added execlp method and new pathconf settingBrandon Scott
2019-11-16LibC: Added some missing directory type constantsBrandon Scott
2019-11-16LibC: Added additional fields to lconv structBrandon Scott
2019-11-16Build: Make sure we look in Libraries/LibPthread for libraries :^)Andreas Kling
2019-11-16LibPthread: Implement a basic first pthread mutexAndreas Kling
2019-11-16Kernel: Release the big process lock while yielding in sys$yield()Andreas Kling
2019-11-16AK: Atomic.h needs <stddef.h> for ptrdiff_tAndreas Kling
2019-11-15Terminal: Add selecting whole line on triple clickRok Povsic
2019-11-15Meta: Add .DS_Store to .gitignore (#786)Doc O
2019-11-15HackStudio: Mark whitespace tokens as skippable GTextDocumentSpansAndreas Kling
2019-11-15GTextEditor: Allow GTextDocumentSpans to be "skippable"Andreas Kling
2019-11-15GTextEditor: Allow moving the cursor span-wise with Ctrl+Left/RightAndreas Kling
2019-11-15GTextEditor: Alt+Shift+S alphabetically sorts selected linesctfloyd
2019-11-15AK: Fix leak in WeakPtr(WeakPtr&&) and WeakPtr::operator=(WeakPtr&&)Andreas Kling
2019-11-15Kernel: Unbreak SlabAllocator after startup-time constructorsAndreas Kling
2019-11-15Ports: Add openssl packageMWGuy