summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2019-02-22Switch over to building everything with i686-elf-g++.Andreas Kling
2019-02-22Throw away the Clock app since we now have a clock in the menubar. :^)Andreas Kling
2019-02-22Start fixing things up to build with a proper cross-compiler.Andreas Kling
2019-02-22Ext2FS: Tweak a debug message to print file mode in octal.Andreas Kling
2019-02-22Kernel: Respect the process umask in open() and mkdir().Andreas Kling
2019-02-22Kernel: Pass process arguments directly on the stack.Andreas Kling
2019-02-22Kernel: Don't allocate and discard an extra stack for every process.Andreas Kling
2019-02-21Kernel+Userland: Implement setuid() and setgid() and add /bin/suAndreas Kling
2019-02-21Kernel: sigpending() and sigprocmask() should validate memory writes.Andreas Kling
2019-02-21Kernel: Add file permission checks to link() syscall.Andreas Kling
2019-02-21Kernel: Add file permission checks to utime() syscall.Andreas Kling
2019-02-21Kernel: Process::cwd_inode() should return a reference.Andreas Kling
2019-02-21Kernel: Separate VFS stat() from open().Andreas Kling
2019-02-21Kernel: Start adding various file system permission checks.Andreas Kling
2019-02-21Add a simple /bin/df which gathers its info from /proc/df.Andreas Kling
2019-02-21Kernel: Add link() syscall to create hard links.Andreas Kling
2019-02-20Support resizing the Terminal app.Andreas Kling
2019-02-20Ext2FS: Remove the inode cache lock in favor of one big lock instead.Andreas Kling
2019-02-20Kernel: If someone else zero-fills a shared VMO page, don't freak out.Andreas Kling
2019-02-20Kernel: Don't remove from SharedBuffer map while iterating it.Andreas Kling
2019-02-20WindowServer: Support resizing windows.Andreas Kling
2019-02-20Ext2FS: Lock a lot. Go way overkill with locking for now.Andreas Kling
2019-02-20Kernel: Reduce code duplication in exception handlers.Andreas Kling
2019-02-20LibGUI: Add a GToolBar class that can be populated with GActions.Andreas Kling
2019-02-19Kernel: Fix wrong calculation of current Unix timestamp.Andreas Kling
2019-02-17Kernel: Run the sync daemon once every second.Andreas Kling
2019-02-17Prune compiler flags a bit. Let's go with -march=i686 for now.Andreas Kling
2019-02-17Kernel: Shrink kmalloc() chunk size from 128 to 64.Andreas Kling
2019-02-17Add ability to switch video modes from the system menu.Andreas Kling
2019-02-17Spawn Launcher and FileManager on startup by default again.Andreas Kling
2019-02-17Kernel: Give each FileDescriptor a chance to co-open sockets.Andreas Kling
2019-02-17Kernel: socket() with SOCK_CLOEXEC was setting the wrong fd flag.Andreas Kling
2019-02-17Kernel: Have devices automagically register themselves with the VFS.Andreas Kling
2019-02-17Kernel: Fix String leaks in exec().Andreas Kling
2019-02-17Kernel: Add SocketRole::Listener and report the role nicely in /proc/PID/fds.Andreas Kling
2019-02-17Kernel: Report the correct name for NullDevice.Andreas Kling
2019-02-17Kernel: Remove Process::gui_client_id().Andreas Kling
2019-02-17Kernel: Rename BochsVGADevice to BXVGADevice.Andreas Kling
2019-02-17Kernel: Rename Keyboard to KeyboardDevice.Andreas Kling
2019-02-17Kernel: munmap() should round up to nearest page size, just like mmap().Andreas Kling
2019-02-17Kernel: Remove tracking of bitmap memory.Andreas Kling
2019-02-17Kernel: FileDescriptor::absolute_path() should "support" sockets.Andreas Kling
2019-02-17Start the WindowServer process with high priority.Andreas Kling
2019-02-17Move WindowServer to userspace.Andreas Kling
2019-02-16Kernel: Add a simple shared memory API for two processes only.Andreas Kling
2019-02-16Kernel: Rename create_framebuffer_wrapper() to create_for_physical_range().Andreas Kling
2019-02-16Kernel: Remove knowledge about BochsVGADevice from Process.Andreas Kling
2019-02-16Kernel: Add ioctls to BochsVGADevice for mode setting and page flipping.Andreas Kling
2019-02-16Kernel: Make BochsVGADevice a BlockDevice and support mmapping it.Andreas Kling
2019-02-16Kernel: Add empty BlockDevice class.Andreas Kling