summaryrefslogtreecommitdiff
path: root/Kernel/Thread.cpp
AgeCommit message (Expand)Author
2019-08-15Kernel: Stop eagerly loading entire executablesAndreas Kling
2019-08-06Kernel: For signal-killed threads, dump backtrace from finalizer threadAndreas Kling
2019-08-01Kernel: Clean up thread stacks when a thread diesAndreas Kling
2019-08-01Kernel: Delete non-main threads immediately after finalizing themAndreas Kling
2019-08-01Kernel+LibC: A lot of the signal handling code was off-by-one.Andreas Kling
2019-07-27Kernel: Add (expensive) but valuable userspace symbols to stacks.Andreas Kling
2019-07-25Kernel: Dump backtrace to debugger for DefaultSignalAction::DumpCore.Andreas Kling
2019-07-22Move runnable/non-runnable list control entirely over to SchedulerRobin Burchell
2019-07-21Scheduler: Allow reentry into block()Robin Burchell
2019-07-20Thread: Cleanup m_blocker handlingRobin Burchell
2019-07-20Net: Merge Thread::wait_for_connect into LocalSocket (as the only place that ...Robin Burchell
2019-07-20Thread: Return a result from block() indicating why the block terminatedRobin Burchell
2019-07-19Kernel: Share the "return to ring 0/3 from signal" trampolines globally.Andreas Kling
2019-07-19AK: Introduce IntrusiveListRobin Burchell
2019-07-19Kernel: Some small refinements to the thread blockers.Andreas Kling
2019-07-19Thread: Normalize all for_each constructs to use IterationDecisionRobin Burchell
2019-07-19Kernel: Remove memory allocations from the new Blocker APIRobin Burchell
2019-07-19Kernel: Remove old block(State) APIRobin Burchell
2019-07-19Kernel: Restore state strings for block statesRobin Burchell
2019-07-19Kernel: Rename Condition state to Blocked now we only have one blocking mecha...Robin Burchell
2019-07-19Kernel: Convert BlockedSignal and BlockedLurking to the new Blocker mechanismRobin Burchell
2019-07-19Kernel: Rename ThreadBlocker classes to avoid stutterRobin Burchell
2019-07-19Kernel: Port wait to ThreadBlockerRobin Burchell
2019-07-19Kernel: Port select to ThreadBlockerRobin Burchell
2019-07-19Kernel: Port sleep to ThreadBlockerRobin Burchell
2019-07-19Kernel: Introduce ThreadBlocker as a way to make unblocking neater :)Robin Burchell
2019-07-18Kernel: Add a new block state for accept() on a blocking socketRobin Burchell
2019-07-17Kernel: Split SCHEDULER_DEBUG into a new SCHEDULER_RUNNABLE_DEBUGRobin Burchell
2019-07-14Kernel: Add Thread::block_until(Condition).Andreas Kling
2019-07-13Kernel: Make it easier to add Thread block states in the future.Andreas Kling
2019-07-08Kernel: Don't interrupt blocked syscalls to dispatch ignored signals.Andreas Kling
2019-07-03AK: Rename the common integer typedefs to make it obvious what they are.Andreas Kling
2019-06-30Kernel: Disable interrupts in Thread::set_state().Andreas Kling
2019-06-13Kernel: Rename "descriptor" to "description" where appropriate.Andreas Kling
2019-06-07Meta: Tweak .clang-format to not wrap braces after enums.Andreas Kling
2019-06-07Kernel: Rename LinearAddress => VirtualAddress.Andreas Kling
2019-06-07Kernel: Run clang-format on everything.Andreas Kling
2019-06-07Kernel: Rename FileDescriptor to FileDescription.Andreas Kling
2019-05-22Kernel: If a signal is ignored, make sure we unset BlockedSignal state.Andreas Kling
2019-05-21Kernel: Bump kernel stacks to 64 KB.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-17Kernel: Make Thread::kernel_stack_base() work for kernel processes.Andreas Kling
2019-05-14Kernel: Make allocate_kernel_region() commit the region automatically.Andreas Kling
2019-05-14Kernel: Allocate kernel signal stacks using the region allocator as well.Andreas Kling
2019-05-14Kernel: Allocate kernel stacks for threads using the region allocator.Andreas Kling
2019-05-03Kernel: Prepare Socket for becoming a File.Andreas Kling
2019-04-29Kernel: Make FIFO inherit from File.Andreas Kling
2019-04-23Kernel: Process destruction should destroy all child threads.Andreas Kling