summaryrefslogtreecommitdiff
path: root/Kernel/Thread.cpp
AgeCommit message (Expand)Author
2020-01-01Kernel: Switch to eagerly restoring x86 FPU state on context switchAndreas Kling
2019-12-31Kernel: Remove some unnecessary leaking of kernel pointers into dmesgAndreas Kling
2019-12-30Kernel: Add a basic thread boosting mechanismAndreas Kling
2019-12-30Kernel: Refactor scheduler to use dynamic thread prioritiesAndreas Kling
2019-12-25Kernel: Make kernel memory regions be non-executable by defaultAndreas Kling
2019-12-25Kernel: Enable PAE (Physical Address Extension)Andreas Kling
2019-12-24Kernel: Fix debug message and kernel stack region names in thread setupConrad Pankoff
2019-12-24Kernel: Mark kernel stack regions as... stack regionsConrad Pankoff
2019-12-24Kernel: Move ring0 stacks out of kmalloc_eternalConrad Pankoff
2019-12-24Kernel: Add a size argument to validate_read_from_kernelConrad Pankoff
2019-12-22Kernel: Unlock the Process when exit()ingAndreas Kling
2019-12-22Kernel: Use IntrusiveList to make WaitQueue allocation-free :^)Andreas Kling
2019-12-22Kernel: Make TID's be unique PID'sAndreas Kling
2019-12-22Kernel: Get rid of "main thread" conceptAndreas Kling
2019-12-18Kernel: Fix intermittent assertion failure in sys$exec()Andreas Kling
2019-12-15Kernel: Fix get_register_dump_from_stack() after IRQ entry changesAndreas Kling
2019-12-11Kernel: Implement a simple process time profilerAndreas Kling
2019-12-08Kernel: Allow setting thread namesAndrew Kaster
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-29Kernel: Demangle kernel C++ symbols correctly againAndreas Kling
2019-11-17Kernel+LibPthread+LibC: Create secondary thread stacks in userspaceAndreas Kling
2019-11-17Kernel: Implement some basic stack pointer validationAndreas Kling
2019-11-16Kernel: Release the big process lock while yielding in sys$yield()Andreas 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-14Kernel: Unwind kernel stacks before dyingSergey Bugaev
2019-11-06Kernel: Rework Process::Priority into ThreadPriorityAndreas Kling
2019-11-06LibELF: Move AK/ELF/ into Libraries/LibELF/Andreas Kling
2019-11-04Kernel: Fix bug in Thread::dispatch_signal().Drew Stratford
2019-11-04Thread.cpp: add method get_RegisterDump_from_stack().Drew Stratford
2019-11-02Kernel+LibC: Implement clock_gettime() and clock_nanosleep()Andreas Kling
2019-10-31Kernel: Allow userspace stacks to grow up to 4 MB by defaultAndreas Kling
2019-10-23Kernel: Move E2BIG calculation from Thread to ProcessAndrew Kaster
2019-10-13Kernel: Don't leak an FPU state buffer for every spawned threadAndreas Kling
2019-10-07Kernel: Send SIGSEGV on seg-faultDrew Stratford
2019-09-27Kernel: No need to manually deallocate kernel stack Region in ~Thread()Andreas Kling
2019-09-09Kernel: Change m_blockers to m_blocker.Drew Stratford
2019-09-09Kernel: Remove reduntant kernel/user signal stacks.Drew Stratford
2019-09-08Kernel: Fix bitrotted code behind #ifdef SIGNAL_DEBUGAndreas Kling
2019-09-07Kernel: Handle running programs that don't have a TLS imageAndreas Kling
2019-09-07Kernel: Support thread-local storageAndreas Kling
2019-09-05Kernel: Add SysV stack alignment to signal trampolineDrew Stratford
2019-09-05Kernel: Use user stack for signal handlers.Drew Stratford
2019-09-05Thread: added member m_kernel_stack_top.Drew Stratford
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