summaryrefslogtreecommitdiff
path: root/Kernel
AgeCommit message (Expand)Author
2020-05-18Kernel: WaitBlocker should always unblock immediately on WNOHANGAndreas Kling
2020-05-17Kernel + LibC: Handle running processes in do_waitid()AnotherTest
2020-05-17Kernel: wait() should not block if WNOHANG is specifiedAnotherTest
2020-05-16Kernel: Remove Process::any_thread()Andreas Kling
2020-05-16Kernel: Let the wait blocker inspect *all* child threads of a processAndreas Kling
2020-05-16Kernel: Sending a signal to a process now goes to the main threadAndreas Kling
2020-05-16Kernel: Remove awkward "#define printf dbgprintf"Andreas Kling
2020-05-16Kernel: Absorb LibBareMetal back into the kernelAndreas Kling
2020-05-16Kernel: Remove now-unused KernelInfoPage.hAndreas Kling
2020-05-16Kernel: Add TimeManagement::now_as_timeval()Andreas Kling
2020-05-16Kernel: Remove sys$getdtablesize()Andreas Kling
2020-05-16Kernel: Use copy_to_user() in sys$gettimeofday()Andreas Kling
2020-05-16Kernel: Remove the "kernel info page" used for fast gettimeofday()Andreas Kling
2020-05-16Kernel: Remove dubious use of "volatile" in E1000 adapter driverAndreas Kling
2020-05-16Kernel: Let's say that IO::delay(N) delays for N microsecondsAndreas Kling
2020-05-16Kernel: Remove dubious use of "volatile" in HPET codeAndreas Kling
2020-05-16Kernel: Use consistent names for kmalloc globals and remove volatileAndreas Kling
2020-05-16Toolchain/Ports: Update to gcc 10.1.0Shannon Booth
2020-05-16Kernel: Annotate UnhandledInterruptHandler::eoi with [[noreturn]]Shannon Booth
2020-05-16Kernel: Tidy up SharedBuffer interfaceShannon Booth
2020-05-15Kernel: Disallow opening socket filesSergey Bugaev
2020-05-14Build: Switch to CMake :^)Sergey Bugaev
2020-05-13Revert "Build: Use fakeroot if non-root build is possible"Andreas Kling
2020-05-12Kernel: Add a stringification helper for KeyCodeAndreas Kling
2020-05-12Build: Use fakeroot if non-root build is possibleNikolay Kochulin
2020-05-11Ports: Add preliminary dropbear portYonatan Goldschmidt
2020-05-11Kernel+LibC: Add AF_MAXYonatan Goldschmidt
2020-05-10Demos: Add LibGfx Demo :^)Linus Groh
2020-05-09Kernel: Add missing copyright header to Ptrace.cppLinus Groh
2020-05-09LaunchServer: Add the LaunchServer to centralise file associations.Nicholas Hollett
2020-05-09Kernel: ioctl(TCSETSF) on a TTY should flush inputAndreas Kling
2020-05-08Kernel+Userland: Add "settime" pledge promise for setting system timeAndreas Kling
2020-05-08Kernel: Only allow superuser to call sys$clock_settime()Andreas Kling
2020-05-08Kernel: Remove SmapDisabler in sys$clock_settime()Andreas Kling
2020-05-08Kernel: Assert on startup if we don't find any physical pagesAndreas Kling
2020-05-08Kernel: Add for_each_vmobject_of_type<T>Andreas Kling
2020-05-08Services: Move Taskbar and SystemMenu from Applications to ServicesAndreas Kling
2020-05-08Services: Renamed from ServersAndreas Kling
2020-05-08Kernel: Propagate failure to commit VM regions in more placesAndreas Kling
2020-05-08Kernel: Use NonnullRefPtrVector for HardwareTimer and HPETComparatorAndreas Kling
2020-05-08Kernel: Remove ref-counting from interrupt override metadataAndreas Kling
2020-05-08Kernel: Use NonnullRefPtrVector<T> instead of Vector<RefPtr<T>> someAndreas Kling
2020-05-07Build: Support building in DockerYonatan Goldschmidt
2020-05-07Kernel: Memory purging was incorrectly "purging" the shared zero pageAndreas Kling
2020-05-06Kernel: Crash the current process on OOM (instead of panicking kernel)Andreas Kling
2020-05-06Kernel: Assert on OOM in Region::commit()Andreas Kling
2020-05-06Kernel: Don't assert on OOM in allocate_user_physical_page()Andreas Kling
2020-05-05LibCore: Add a standard downloads directory (~/Downloads)Andreas Kling
2020-05-04Kernel: Use Multiboot macros instead of magic constants (#2090)Nathan Lanza
2020-05-03Kernel: Don't crash on invalid fcntlBen Wiederhake