summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2019-03-09LibGUI: Use a separate data role for the table model sorting order.Andreas Kling
2019-03-09Make it possible to sort a GTableModel by column+order.Andreas Kling
2019-03-08Add a C++ helper class for working with shared buffers.Andreas Kling
2019-03-08Kernel: Minor tidying in BXVGADevice.Andreas Kling
2019-03-07TextEditor: Open an empty document by default.Andreas Kling
2019-03-07Kernel: Detect the Delete key.Andreas Kling
2019-03-07Kernel: Detect the Home and End keyboard keys.Andreas Kling
2019-03-07Begin working on a graphical TextEditor.Andreas Kling
2019-03-06Kernel: And some more KResult/KResultOr<T> porting work.Andreas Kling
2019-03-06Kernel: Port more code to KResult and KResultOr<T>.Andreas Kling
2019-03-06Kernel: Add two error checks for open() to return EISDIR or ENODEV.Andreas Kling
2019-03-06Kernel: Dump kernel stack trace on assertion failure.Andreas Kling
2019-03-05Kernel+WindowServer: Move mouse input signal parsing to kernel driver.Andreas Kling
2019-03-05Kernel: Remove "requested wakeups" feature.Andreas Kling
2019-03-05Kernel: More signal handling improvements.Andreas Kling
2019-03-05Kernel: Returning from a signal handler reset the signal mask correctly.Andreas Kling
2019-03-05Kernel: Block a signal from being dispatched again until handler returns.Andreas Kling
2019-03-04Kernel: SIGCONT should unblock a blocked process.Andreas Kling
2019-03-03Kernel: Detect the Tab key. :^)Andreas Kling
2019-03-03Detect the "Logo" (Windows/Apple/whatever) key and use it for window resize.Andreas Kling
2019-03-03Kernel: No need to check is_superuser() after may_execute().Andreas Kling
2019-03-03LibGUI: Move shortcut actions from GEventLoop to GApplications.Andreas Kling
2019-03-03Kernel: Try to do the right thing by default for unhandled signals.Andreas Kling
2019-03-03Applications: Map Alt+F4 to Quit in FileManager/ProcessManager/Terminal.Andreas Kling
2019-03-02Kernel: Keyboard should detect the Page Up and Page Down keys.Andreas Kling
2019-03-02Kernel+Userland: Add symlink() syscall and add "-s" flag to /bin/ln.Andreas Kling
2019-03-02Kernel: Port stat() to KResult/KResultOr<T>.Andreas Kling
2019-03-01Kernel: Support chdir() to a directory that's executable but not readable.Andreas Kling
2019-03-01Kernel: Don't send SIGCHLD to parent process if he has SA_NOCLDWAIT set.Andreas Kling
2019-03-01Put miscellaneous debug spam behind #ifdefs.Andreas Kling
2019-03-01Kernel+Userland: Implement fchmod() syscall and use it to improve /bin/cp.Andreas Kling
2019-02-28Kernel: Oops, fix Vector assertion in FS::Sync.Andreas Kling
2019-02-28Kernel: Make a copy of the dirty inode list before iterating in sync().Andreas Kling
2019-02-28Kernel: Implement basic SIGSTOP and SIGCONT support.Andreas Kling
2019-02-28Kernel: Only allow sending signals to process you own.Andreas Kling
2019-02-28Kernel: kill() syscall should support sending a signal to yourself.Andreas Kling
2019-02-28ProcessManager: Start working on a graphical process manager.Andreas Kling
2019-02-27Userland: Add a simple /bin/stat program.Andreas Kling
2019-02-27Kernel: Allow uid 0 to read/write/execute any file.Andreas Kling
2019-02-27Ext2FS: Fix hole in Ext2FSInode::directory_entry_count() locking.Andreas Kling
2019-02-27Kernel: Use KResult in link().Andreas Kling
2019-02-27Kernel: Use KResult in unlink() and rmdir().Andreas Kling
2019-02-27Kernel: chmod() should allow superuser to change mode bits of any file.Andreas Kling
2019-02-27Add chown() syscall and a simple /bin/chown program.Andreas Kling
2019-02-27More compat work towards porting vim.Andreas Kling
2019-02-26LibC: Make errno codes be #defines instead of enum values.Andreas Kling
2019-02-26Compat work towards porting vim.Andreas Kling
2019-02-26Kernel: Simplify ELF loading a bit.Andreas Kling
2019-02-26Compat work towards making bash-5.0 build with less patches.Andreas Kling
2019-02-26More compat work. Rename libraries from LibFoo.a => libfoo.aAndreas Kling