summaryrefslogtreecommitdiff
AgeCommit message (Expand)Author
2019-05-20GEventLoop: Make the WindowServer connection use a blocking socket.Andreas Kling
2019-05-20Kernel: Add support for recv() with MSG_DONTWAIT.Andreas Kling
2019-05-20WindowServer: Allow sending up to 32 invalidation rects inline.Andreas Kling
2019-05-20CEventLoop: Allow manually driving the event loopRobin Burchell
2019-05-20LocalSocket: Fix mismatch between can_write() and write() logic.Andreas Kling
2019-05-20Toolchain: Oops, let's unbreak UseIt.sh.Andreas Kling
2019-05-20Kernel: Report EAGAIN from read() on a non-blocking socket if the buffer is e...Robin Burchell
2019-05-19Minesweeper: Make things a little more friendly at the startRobin Burchell
2019-05-19LibC: Add an h_addr macro for old code that doesn't know about h_addr_list.Andreas Kling
2019-05-19Kernel+LibC: Implement getsockname() syscall.Andreas Kling
2019-05-19LibC: Add stub for fsync().Andreas Kling
2019-05-19LibC: Add mmap_with_name() that names the allocation immediately.Andreas Kling
2019-05-19IDEDiskDevice: Add sysctl variable for turning DMA on/off.Andreas Kling
2019-05-19LibC: unsetenv() should take a const char*, not a char*.Andreas Kling
2019-05-19WindowServer: Improve client write handling a littleRobin Burchell
2019-05-19Kernel: Check can_write for blocking writeRobin Burchell
2019-05-19Kernel: Add the ability to debug poll/select independently of read/writeRobin Burchell
2019-05-19IDEDiskDevice: Support reading multiple sectors at a time with DMA.Andreas Kling
2019-05-19IDEDiskDevice: Use wait_for_irq() when waiting for DMA transfers.Andreas Kling
2019-05-19IDEDiskDevice: Add support for DMA reads.Andreas Kling
2019-05-19Kernel: Remove an unused ELFLoader member.Andreas Kling
2019-05-19AK: Simplify quick_sort() and improve Vector iterators a bit.Andreas Kling
2019-05-19Kernel: Remove relocation-related code since it's not used by the kernel.Andreas Kling
2019-05-18Kernel: Don't page in entire file immediately on mmap().Andreas Kling
2019-05-18malloc: Use a Vector with inline capacity for the big block recyclers.Andreas Kling
2019-05-18FileDescriptor: It's actually okay to seek past the end of a file. :^)Andreas Kling
2019-05-18Kernel: Make sure we never put the colonel thread in the runnable list.Andreas Kling
2019-05-18Kernel: Add a Thread::set_thread_list() helper to keep logic in one place.Andreas Kling
2019-05-18Kernel: Refactor thread scheduling a bit, breaking it into multiple lists.Andreas Kling
2019-05-18Kernel: Fix select with a 0 timeoutRobin Burchell
2019-05-18Kernel: Don't allow dump_backtrace() to call dump_backtrace().Andreas Kling
2019-05-18WSWindowManager: Add double click to maximize/restoreRobin Burchell
2019-05-18Kernel: Fail a bit more gracefully when we don't have userspace symbols.Andreas Kling
2019-05-18Kernel: SharedMemory should implement mmap().Andreas Kling
2019-05-18Kernel: Tidy up FileDescriptor members a bit.Andreas Kling
2019-05-18Kernel: Fix poll() with timeoutRobin Burchell
2019-05-18Kernel: Remove some RangeAllocator debug spam.Andreas Kling
2019-05-18Kernel: select() was transferring the readfds into the exceptfds vector.Andreas Kling
2019-05-18Kernel: Pass ELF program header locations from multiboot to kernel.Andreas Kling
2019-05-18Kernel: Make sure to clear FD sets when preparing for a selectRobin Burchell
2019-05-18Toolchain: Add some required options to the default CMake options.Robin Burchell
2019-05-18Kernel: Fix timeout support in selectRobin Burchell
2019-05-18NetworkTask: Don't crash on startup if there's no E1000 NIC present.Andreas Kling
2019-05-17WindowServer: Add support for fullscreen windows.Andreas Kling
2019-05-17Build: Install most headers to Root (and libcore.a/libgui.a)Robin Burchell
2019-05-17Kernel: Make the times() syscall return something other than 0.Andreas Kling
2019-05-17LibC: Implement clock() and add CLOCKS_PER_SEC define.Andreas Kling
2019-05-17Kernel: After creating our GDT, make sure CS refers to the right descriptor.Andreas Kling
2019-05-17sync.sh: Use mkdir -p for everything.Andreas Kling
2019-05-17Kernel: Put GDT and IDT in BSS rather than runtime-allocating them.Andreas Kling