index
:
yuzu
master
Nintendo Switch emulator archive
git
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
thread.cpp
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
kernel/process: Make the handle table per-process
Lioncash
2018-10-20
1
-1
/
+1
*
core_cpu: Make Cpu scheduler instances unique_ptrs instead of shared_ptrs
Lioncash
2018-10-15
1
-8
/
+8
*
thread: Remove unnecessary memset from ResetThreadContext()
Lioncash
2018-10-12
1
-4
/
+1
*
kernel/thread: Use a regular pointer for the owner/current process
Lioncash
2018-10-10
1
-4
/
+4
*
thread: Make the scheduler pointer a regular pointer
balika011
2018-10-05
1
-3
/
+3
*
kernel/thread: Make all instance variables private
Lioncash
2018-10-04
1
-4
/
+28
*
kernel/process: Make data member variables private
Lioncash
2018-09-30
1
-2
/
+2
*
memory: Dehardcode the use of fixed memory range constants
Lioncash
2018-09-24
1
-1
/
+2
*
thread/process: Move TLS slot marking/freeing to the process class
Lioncash
2018-09-21
1
-56
/
+2
*
kernel/thread: Use owner_process when setting the page table in SetupMainThre...
Lioncash
2018-09-20
1
-3
/
+3
*
arm_interface: Remove ARM11-isms from the CPU interface
Lioncash
2018-09-18
1
-2
/
+2
*
Port #4182 from Citra: "Prefix all size_t with std::"
fearlessTobi
2018-09-15
1
-1
/
+1
*
kernel/errors: Correct error codes for invalid thread priority and invalid pr...
Lioncash
2018-09-12
1
-2
/
+2
*
core/core: Replace includes with forward declarations where applicable
Lioncash
2018-08-31
1
-1
/
+2
*
kernel: Eliminate kernel global state
Lioncash
2018-08-28
1
-101
/
+18
*
core: Namespace all code in the arm subdirectory under the Core namespace
Lioncash
2018-08-24
1
-2
/
+2
*
Core::CoreTiming: add UnscheduleEventThreadsafe
B3n30
2018-08-13
1
-1
/
+1
*
Merge pull request #1042 from Subv/races
bunnei
2018-08-12
1
-2
/
+9
|
\
|
*
Kernel/Threads: Lock the HLE mutex when executing the wakeup callback.
Subv
2018-08-12
1
-0
/
+5
|
*
Kernel/Thread: Always use the threadsafe option when scheduling wakeups.
Subv
2018-08-12
1
-2
/
+4
*
|
Kernel/Mutex: Don't duplicate threads in the mutex waiter list.
Subv
2018-08-12
1
-0
/
+21
|
/
*
kernel/thread: Fix potential crashes introduced in 26de4bb521b1ace7af76eff4f6...
Lioncash
2018-08-03
1
-0
/
+11
*
core/memory: Get rid of 3DS leftovers
Lioncash
2018-08-03
1
-31
/
+2
*
Merge pull request #894 from lioncash/object
bunnei
2018-08-03
1
-1
/
+1
|
\
|
*
kernel: Move object class to its own source files
Lioncash
2018-08-01
1
-1
/
+1
*
|
kernel/thread: Make GetFreeThreadLocalSlot()'s loop indices size_t
Lioncash
2018-08-02
1
-8
/
+5
*
|
kernel/thread: Make GetFreeThreadLocalSlot() reference parameter a const refe...
Lioncash
2018-08-02
1
-1
/
+2
*
|
kernel/thread: Make GetFreeThreadLocalSlot() internally linked
Lioncash
2018-08-02
1
-1
/
+1
|
/
*
kernel: Remove unnecessary includes
Lioncash
2018-07-31
1
-2
/
+4
*
core_timing: Split off utility functions into core_timing_util
MerryMage
2018-07-24
1
-0
/
+1
*
Merge pull request #751 from Subv/tpidr_el0
bunnei
2018-07-21
1
-0
/
+1
|
\
|
*
CPU: Save and restore the TPIDR_EL0 system register on every context switch.
Subv
2018-07-20
1
-0
/
+1
*
|
thread: Convert ThreadStatus into an enum class
Lioncash
2018-07-19
1
-24
/
+23
|
/
*
Merge pull request #690 from lioncash/move
bunnei
2018-07-18
1
-1
/
+1
|
\
|
*
core/memory, core/hle/kernel: Use std::move where applicable
Lioncash
2018-07-18
1
-1
/
+1
*
|
core: Don't construct instance of Core::System, just to access its live instance
Lioncash
2018-07-18
1
-6
/
+6
|
/
*
Update clang format
James Rowe
2018-07-02
1
-1
/
+1
*
Rename logging macro back to LOG_*
James Rowe
2018-07-02
1
-5
/
+5
*
Kernel/Arbiters: Implement WaitForAddress
Michael Scire
2018-06-21
1
-0
/
+6
*
Kernel/Threads: A thread waking up by timeout from a WaitProcessWideKey may a...
Subv
2018-06-02
1
-2
/
+5
*
Kernel/Thread: Corrected a typo that caused the affinity mask to never be cha...
Subv
2018-05-30
1
-2
/
+2
*
Kernel/Thread: Corrected a typo in an assert about the processor id.
Subv
2018-05-30
1
-1
/
+1
*
thread: Rename mask to affinity_masks.
bunnei
2018-05-10
1
-2
/
+2
*
thread: Support core change on ResumeFromWait and improve ChangeCore.
bunnei
2018-05-10
1
-37
/
+68
*
thread: Initialize ideal_core and mask members.
bunnei
2018-05-10
1
-0
/
+2
*
threading: Reschedule only on cores that are necessary.
bunnei
2018-05-10
1
-1
/
+1
*
thread: Implement ChangeCore function.
bunnei
2018-05-10
1
-1
/
+52
*
core: Implement multicore support.
bunnei
2018-05-10
1
-8
/
+8
*
core_timing: Namespace all functions and constants in core_timing's header
Lioncash
2018-04-30
1
-1
/
+2
*
general: Convert assertion macros over to be fmt-compatible
Lioncash
2018-04-27
1
-2
/
+2
[next]