summaryrefslogtreecommitdiff
path: root/Kernel/Thread.h
AgeCommit message (Expand)Author
2020-12-02Kernel: Add CLOCK_REALTIME support to the TimerQueueTom
2020-12-02Kernel: TimerQueue::cancel_timer needs to wait if timer is executingTom
2020-12-01Kernel: Fix some problems with Thread::wait_on and LockTom
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-22Kernel: Make CLOCK_MONOTONIC respect the system tick frequencyAndreas Kling
2020-10-26Kernel: Fix a few deadlocks with Thread::m_lock and g_scheduler_lockTom
2020-09-27Kernel: Make Thread refcountedTom
2020-09-26Kernel: Allow killing queued threadsTom
2020-09-26Kernel: Fix thread joining issuesTom
2020-09-16Kernel: Return ENOMEM in more placesLuke
2020-09-13Kernel: Make copy_to/from_user safe and remove unnecessary checksTom
2020-09-12Kernel: Fix various forward declarationsBen Wiederhake
2020-09-09Kernel: Keep signal state in syncTom
2020-09-07Kernel: Fix crash when delivering signal to barely created threadTom
2020-08-19Kernel: Remove an unimplemented function (#3210)Muhammad Zahalqa
2020-08-16AK: Rename KB, MB, GB to KiB, MiB, GiBNico Weber
2020-08-15Kernel: Briefly resume stopped threads when being killedTom
2020-08-11Kernel: Always return from Thread::wait_onTom
2020-08-10Kernel: More PID/TID typingBen Wiederhake
2020-08-10Kernel: PID/TID typingBen Wiederhake
2020-08-06Kernel: Dequeue dying threads from WaitQueueTom
2020-08-03Kernel: Consolidate timeout logicTom
2020-08-03Kernel: Fix a few Thread::block related racesTom
2020-08-02Kernel: Fix signal delivery when no syscall is madeTom
2020-08-02Kernel: Remove ProcessInspectionHandle and make Process RefCountedTom
2020-07-25Kernel: Allow Thread::sleep for more than 388 daysBen Wiederhake
2020-07-07Kernel: Fix checking BlockResultTom
2020-07-07Kernel+LibELF: Expose ELF Auxiliary Vector to UserspaceAndrew Kaster
2020-07-06Kernel: Enhance WaitQueue to remember pending wakesTom
2020-07-06Kernel: Various context switch fixesTom
2020-07-06Kernel: Require a reason to be passed to Thread::wait_onTom
2020-07-03Kernel: Fix retreiving frame pointer from a threadTom
2020-07-03Kernel: Fix signal deliveryTom
2020-07-02Kernel: Remove no-longer-used GDT selector from ThreadAndreas Kling
2020-07-01Kernel: Turn Thread::current and Process::current into functionsTom
2020-07-01Kernel/LibCore: Expose processor id where a thread last ranTom
2020-07-01Kernel: Implement software context switching and Processor structureTom
2020-06-22LibC: Implement pselectNico Weber
2020-05-20AK+Kernel: Help the compiler inline a bunch of trivial methodsSergey Bugaev
2020-04-26Kernel: Add timeout support to Thread::wait_onBrian Gianforcaro
2020-04-22Kernel: Make Process and Thread non-copyable and non-movableAndreas Kling
2020-04-13ptrace: Add PT_SETREGSItamar
2020-04-13CPU: Handle breakpoint trapItamar
2020-04-11Kernel: Include the current instruction pointer in profile samplesAndreas Kling
2020-03-28Kernel: Add 'ptrace' syscallItamar
2020-03-23AK: Reduce header dependency graph of String.hAndreas Kling
2020-03-08AK: Add global FlatPtr typedef. It's u32 or u64, based on sizeof(void*)Andreas Kling
2020-03-01Kernel: Restore the previous thread state on SIGCONT after SIGSTOPAndreas Kling