summaryrefslogtreecommitdiff
path: root/Kernel/Scheduler.cpp
AgeCommit message (Expand)Author
2020-01-18Kernel: Stop flushing GDT/IDT registers all the timeAndreas Kling
2020-01-18Meta: Add license header to source filesAndreas Kling
2020-01-12Kernel: Dispatch pending signals when returning from a syscallAndreas Kling
2020-01-12Kernel: Disable SMAP protection while capturing profile samplesAndreas Kling
2020-01-09Kernel: Rename {ss,esp}_if_crossRing to userspace_{ss,esp}Andreas Kling
2020-01-09Kernel: Ignore closed fd's when considering select() unblockAndreas Kling
2020-01-01Kernel: Prevent executing I/O instructions in userspaceAndreas Kling
2020-01-01Kernel: Switch to eagerly restoring x86 FPU state on context switchAndreas Kling
2019-12-30Kernel: Refactor scheduler to use dynamic thread prioritiesAndreas Kling
2019-12-27Kernel: Add kernel-level timer queue (heavily based on @juliusf's work)Conrad Pankoff
2019-12-27Kernel: Separate runnable thread queues by priorityAndreas Kling
2019-12-26Kernel: Move PC speaker beep timing logic from scheduler to the syscallAndreas Kling
2019-12-22Kernel: Get rid of "main thread" conceptAndreas Kling
2019-12-15Kernel+LibC: Publish a "kernel info page" and use it for gettimeofday()Andreas Kling
2019-12-11Kernel: Implement a simple process time profilerAndreas Kling
2019-12-01Kernel: Use a WaitQueue to implement finalizer wakeupAndreas Kling
2019-12-01Kernel: Use a dedicated thread state for wait-queued threadsAndreas Kling
2019-12-01Kernel: Add a WaitQueue for Thread queueing/waking and use it for LockAndreas Kling
2019-11-14Kernel: Move Thread::m_joinee_exit_value into the JoinBlockerAndreas Kling
2019-11-14Kernel+LibPthread: Implement pthread_join()Andreas Kling
2019-11-06Kernel: Rework Process::Priority into ThreadPriorityAndreas Kling
2019-10-07Kernel: Add exception_code to RegisterDump.Drew Stratford
2019-10-02Kernel: Don't update Thread TSS if scheduler tick reschedules itAndreas Kling
2019-09-14Kernel: Stop idling after handling an IRQAndreas Kling
2019-09-09Kernel: Change m_blockers to m_blocker.Drew Stratford
2019-09-08Kernel: waitpid() should unblock and -ECHILD if SIG_IGN reaps childAndreas Kling
2019-09-07Kernel: Support thread-local storageAndreas Kling
2019-08-10Kernel: Use a more detailed state machine for socket setupConrad Pankoff
2019-08-07Kernel: Don't create Function objects in the scheduling codeAndreas Kling
2019-08-01Scheduler: Fix bitrotted SCHEDULER_RUNNABLE_DEBUG codeAndreas Kling
2019-08-01Scheduler: Fix deadlock when first scheduling candidate being inspectedAndreas 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-20Thread: Return a result from block() indicating why the block terminatedRobin Burchell
2019-07-19AK: Introduce IntrusiveListRobin Burchell
2019-07-19Kernel: Some small refinements to the thread blockers.Andreas Kling
2019-07-19Scheduler: Remove some raw use of the runnable listsRobin Burchell
2019-07-19Thread: Normalize all for_each constructs to use IterationDecisionRobin 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: Avoid allocations for Select vectors by using inline capacityRobin 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-18Scheduler: Move thread unblocking out of a lambda to help make things more re...Robin Burchell
2019-07-18Kernel: Add a new block state for accept() on a blocking socketRobin Burchell