summaryrefslogtreecommitdiff
path: root/Kernel/Process.cpp
AgeCommit message (Expand)Author
2021-01-17Kernel+Userland: Remove shared buffers (shbufs)Andreas Kling
2021-01-16Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-15Kernel: Store process arguments and environment in coredumpsLinus Groh
2021-01-15Kernel: Prevent threads from being destructed between die() and finalize()Linus Groh
2021-01-15Kernel: Make Process::allocate_region*() return KResultOr<Region*>Andreas Kling
2021-01-11Kernel: Remove MM_DEBUG debug spam codeAndreas Kling
2021-01-11Everywhere: Fix incorrect uses of String::format and StringBuilder::appendfSahan Fernando
2021-01-11Kernel: Don't dump perfcore for non-dumpable processesAndreas Kling
2021-01-11Kernel: Fix perfcore filename generation build errorAndreas Kling
2021-01-11Kernel+Profiler: Make profiling per-process and without core dumpsAndreas Kling
2021-01-09Everywhere: Replace a bundle of dbg with dbgln.asynts
2021-01-02Kernel: Pass "shared" flag to Region constructorAndreas Kling
2021-01-01Kernel: Merge PurgeableVMObject into AnonymousVMObjectTom
2021-01-01Kernel: Implement lazy committed page allocationTom
2021-01-01Kernel: Remove MAP_PURGEABLE from mmapTom
2021-01-01Kernel: Add MAP_NORESERVE support to mmapTom
2021-01-01Kernel: Memory purging improvementsTom
2020-12-26Everywhere: void arguments to C functionsLenny Maiorani
2020-12-25Kernel+LibELF: Stop doing ELF symbolication in the kernelAndreas Kling
2020-12-22Kernel: Abort core dump generation if any substep failsAndreas Kling
2020-12-21Everywhere: Switch from (void) to [[maybe_unused]] (#4473)Lenny Maiorani
2020-12-18Kernel: Move KBufferBuilder to the fallible KBuffer APIAndreas Kling
2020-12-18Kernel: Don't dump core when OOM-killing a processAndreas Kling
2020-12-15Kernel: Don't take LexicalPath as argumentAndreas Kling
2020-12-14Kernel: Generate coredumps for profiled processesItamar
2020-12-14Kernel: Pass full path of output coredump file to CoreDumpItamar
2020-12-14Kernel: Generate a coredump file when a process crashesItamar
2020-12-12Kernel: Change wait blocking to Process-only blockingTom
2020-12-12Kernel: disown should unblock any potential waitersTom
2020-12-12Kernel: Fix some issues related to fixes and block conditionsTom
2020-12-02Kernel: Use TimerQueue for SIGALRMTom
2020-11-30Kernel: Move block condition evaluation out of the SchedulerTom
2020-11-30Kernel: Allow passing a thread argument for new kernel threadsTom
2020-11-30Kernel: Move some time related code from Scheduler into TimeManagementTom
2020-11-10AK: Make RefPtr, NonnullRefPtr, WeakPtr thread safeTom
2020-10-26Kernel: Fix a few deadlocks with Thread::m_lock and g_scheduler_lockTom
2020-10-10Kernel: Remove FIXME about unsurfaced error and log somethingAndreas Kling
2020-10-03Everywhere: Fix more typosLinus Groh
2020-09-27Kernel: Make Thread refcountedTom
2020-09-26Kernel: Fix thread joining issuesTom
2020-09-24Kernel: Remove a whole bunch of unnecessary includes in Process.cppAndreas Kling
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-10Kernel: Rename Process::is_ring0/3 to Process::is_kernel/user_processTom
2020-09-08Refactor: Replace usages of FixedArray with Vector.asynts
2020-08-30Kernel: Unbreak building with extra debug macros, part 2Ben Wiederhake
2020-08-22Kernel: Make Process::dump_regions() sort the regions before dumpingAndreas Kling
2020-08-19Kernel: Distinguish between new and old process groups with equal pgidsAnotherTest
2020-08-12Kernel: Mark compilation-unit-only functions as staticBen Wiederhake
2020-08-11Kernel: Always return from Thread::wait_onTom
2020-08-10Kernel: Fix PID/TID confusion in send_signalBen Wiederhake