index
:
serenity
master
topic/trivial_docs
The Serenity Operating System 🐞
cos
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
Kernel
/
Thread.cpp
Age
Commit message (
Expand
)
Author
2019-07-17
Kernel: Split SCHEDULER_DEBUG into a new SCHEDULER_RUNNABLE_DEBUG
Robin Burchell
2019-07-14
Kernel: Add Thread::block_until(Condition).
Andreas Kling
2019-07-13
Kernel: Make it easier to add Thread block states in the future.
Andreas Kling
2019-07-08
Kernel: Don't interrupt blocked syscalls to dispatch ignored signals.
Andreas Kling
2019-07-03
AK: Rename the common integer typedefs to make it obvious what they are.
Andreas Kling
2019-06-30
Kernel: Disable interrupts in Thread::set_state().
Andreas Kling
2019-06-13
Kernel: Rename "descriptor" to "description" where appropriate.
Andreas Kling
2019-06-07
Meta: Tweak .clang-format to not wrap braces after enums.
Andreas Kling
2019-06-07
Kernel: Rename LinearAddress => VirtualAddress.
Andreas Kling
2019-06-07
Kernel: Run clang-format on everything.
Andreas Kling
2019-06-07
Kernel: Rename FileDescriptor to FileDescription.
Andreas Kling
2019-05-22
Kernel: If a signal is ignored, make sure we unset BlockedSignal state.
Andreas Kling
2019-05-21
Kernel: Bump kernel stacks to 64 KB.
Andreas Kling
2019-05-18
Kernel: Make sure we never put the colonel thread in the runnable list.
Andreas Kling
2019-05-18
Kernel: Add a Thread::set_thread_list() helper to keep logic in one place.
Andreas Kling
2019-05-18
Kernel: Refactor thread scheduling a bit, breaking it into multiple lists.
Andreas Kling
2019-05-17
Kernel: Make Thread::kernel_stack_base() work for kernel processes.
Andreas Kling
2019-05-14
Kernel: Make allocate_kernel_region() commit the region automatically.
Andreas Kling
2019-05-14
Kernel: Allocate kernel signal stacks using the region allocator as well.
Andreas Kling
2019-05-14
Kernel: Allocate kernel stacks for threads using the region allocator.
Andreas Kling
2019-05-03
Kernel: Prepare Socket for becoming a File.
Andreas Kling
2019-04-29
Kernel: Make FIFO inherit from File.
Andreas Kling
2019-04-23
Kernel: Process destruction should destroy all child threads.
Andreas Kling
2019-04-20
Kernel: Remove some more unnecessary Thread members.
Andreas Kling
2019-04-20
Kernel: Shrink Thread by making kernel resume TSS heap-allocated.
Andreas Kling
2019-04-20
Sprinkle use of AK::Vector in various places.
Andreas Kling
2019-04-17
Kernel: Scheduler donations need to verify that the beneficiary is valid.
Andreas Kling
2019-04-14
Kernel: Remove system.h and make the uptime global a qword.
Andreas Kling
2019-04-03
Kernel: Move VM-related files into Kernel/VM/.
Andreas Kling
2019-04-03
Kernel: Remove ancient nprocess and nblocked globals.
Andreas Kling
2019-04-01
Kernel: Add a blunt big process lock.
Andreas Kling
2019-03-27
Kernel: Save/restore the SSE context on context switch.
Andreas Kling
2019-03-24
Kernel: Make block() and yield() automatically call Scheduler::yield().
Andreas Kling
2019-03-23
Kernel: Add a Thread::all_threads() helper.
Andreas Kling
2019-03-23
Kernel+LibC: Add a simple create_thread() syscall.
Andreas Kling
2019-03-23
Kernel: Don't add the colonel process' main thread to g_threads.
Andreas Kling
2019-03-23
Kernel: Introduce threads, and refactor everything in support of it.
Andreas Kling