index
:
anonymous/yuzu
master
yuzu is the world's most popular, open-source, Nintendo Switch emulator — started by the creators of Citra. It is written in C++ with portability in mind,
mirror
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
src
/
core
/
hle
/
kernel
/
k_thread.h
(
follow
)
Commit message (
Expand
)
Author
Age
Files
Lines
*
kernel: fix single-core preemption points
Liam
2022-07-15
1
-1
/
+0
*
kernel: fix issues with single core mode
Liam
2022-07-15
1
-24
/
+0
*
kernel: use KScheduler from mesosphere
Liam
2022-07-15
1
-0
/
+5
*
common/fiber: make fibers easier to use
Liam
2022-07-02
1
-2
/
+1
*
core: Replace all instances of ResultCode with Result
german77
2022-06-27
1
-31
/
+30
*
kernel: make current thread pointer thread local
Liam
2022-06-23
1
-0
/
+1
*
kernel: wait for threads to stop on pause
Liam
2022-06-18
1
-0
/
+2
*
core/debugger: Support reading guest thread names
Liam
2022-06-02
1
-0
/
+10
*
core/debugger: Improved stepping mechanism and misc fixes
Liam
2022-06-01
1
-0
/
+15
*
general: Convert source file copyright comments over to SPDX
Morph
2022-04-23
1
-3
/
+2
*
core: hle: kernel: k_thread: Rework dummy thread waiting.
bunnei
2022-04-12
1
-4
/
+6
*
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
bunnei
2022-04-12
1
-1
/
+2
*
k_thread: Fix data race
lat9nq
2022-04-04
1
-1
/
+2
*
core: hle: kernel: k_thread: Update to reflect tree changes.
bunnei
2022-03-15
1
-3
/
+3
*
hle: kernel: KThread: Ensure host (dummy) threads block on locking.
bunnei
2022-01-22
1
-0
/
+13
*
hle: kernel: KThread: Decrease DummyThread priority to ensure it is never scheduled.
bunnei
2022-01-21
1
-0
/
+1
*
hle: kernel: KThread: Rename thread_type_for_debugging -> thread_type.
bunnei
2022-01-21
1
-3
/
+3
*
core: hle: kernel: KThread: Integrate with KWorkerTask and implement DoWorkerTaskImpl.
bunnei
2022-01-15
1
-1
/
+6
*
core: hle: kernel: KThread: Replace Suspend with UpdateState & various updates.
bunnei
2022-01-15
1
-2
/
+2
*
core: hle: kernel: Implement thread pinning.
bunnei
2021-12-31
1
-1
/
+5
*
hle: kernel: k_thread: Rename sleeping_queue -> wait_queue.
bunnei
2021-12-07
1
-6
/
+2
*
hle: kernel: k_thread: Treat dummy threads as a special type.
bunnei
2021-12-07
1
-0
/
+1
*
hle: kernel: Add a flag for indicating that the kernel is currently shutting down.
bunnei
2021-12-07
1
-0
/
+4
*
hle: kernel: Cleanup to match coding style.
bunnei
2021-12-07
1
-2
/
+2
*
hle: kernel: KThread: Migrate to updated KThreadQueue (part 1).
bunnei
2021-12-07
1
-2
/
+2
*
hle: kernel: KThread: Remove tracking of sync object from threads.
bunnei
2021-12-07
1
-12
/
+0
*
hle: kernel: Update KThreadQueue and migrate KSynchronizationObject.
bunnei
2021-12-07
1
-0
/
+27
*
core: hle: kernel: Disable dispatch count tracking on single core.
bunnei
2021-12-07
1
-3
/
+8
*
core: hle: kernel: k_thread: Mark KScopedDisableDispatch as nodiscard.
bunnei
2021-12-07
1
-1
/
+1
*
core: hle: kernel: k_thread: Add KScopedDisableDispatch.
bunnei
2021-12-07
1
-0
/
+31
*
Revert "kernel: Various improvements to scheduler"
bunnei
2021-08-26
1
-36
/
+0
*
core: hle: kernel: Disable dispatch count tracking on single core.
bunnei
2021-08-14
1
-3
/
+8
*
core: hle: kernel: k_thread: Mark KScopedDisableDispatch as nodiscard.
bunnei
2021-08-07
1
-1
/
+1
*
core: hle: kernel: k_thread: Add KScopedDisableDispatch.
bunnei
2021-08-07
1
-0
/
+31
*
general: Replace RESULT_SUCCESS with ResultSuccess
Morph
2021-06-02
1
-1
/
+1
*
kernel: Add missing override specifiers
Lioncash
2021-05-29
1
-5
/
+5
*
kernel: Eliminate variable shadowing
Lioncash
2021-05-08
1
-3
/
+3
*
hle: kernel: Rename Process to KProcess.
bunnei
2021-05-06
1
-8
/
+8
*
hle: kernel: Remove deprecated Object class.
bunnei
2021-05-06
1
-15
/
+0
*
hle: kernel: Migrate KThread to KAutoObject.
bunnei
2021-05-06
1
-57
/
+43
*
k_thread: Remove [[nodiscard]] attribute from ClearWaitCancelled()
Lioncash
2021-04-12
1
-1
/
+1
*
hle: kernel: Migrate some code from Common::SpinLock to KSpinLock.
bunnei
2021-03-21
1
-2
/
+2
*
hle: kernel: KThread: Rework dummy threads & fix memory leak.
bunnei
2021-03-06
1
-4
/
+20
*
Revert "core: Switch to unique_ptr for usage of Common::Fiber."
bunnei
2021-03-06
1
-8
/
+2
*
core: Switch to unique_ptr for usage of Common::Fiber.
bunnei
2021-02-27
1
-2
/
+8
*
yuzu: debugger: Ignore HLE threads.
bunnei
2021-01-29
1
-0
/
+5
*
hle: kernel: KScheduler: Introduce thread context_guard.
bunnei
2021-01-29
1
-0
/
+1
*
hle: kernel: Recode implementation of KThread to be more accurate.
bunnei
2021-01-29
1
-282
/
+308
*
hle: kernel: KThread: Clean up thread priorities.
bunnei
2021-01-29
1
-22
/
+0
*
hle: kernel: KThread: Reorganize thread priority defaults.
bunnei
2021-01-29
1
-9
/
+3
*
hle: kernel: KThread: Fix ThreadType definition.
bunnei
2021-01-29
1
-4
/
+7
*
hle: kernel: Move single core "phantom mode" out of KThread.
bunnei
2021-01-29
1
-9
/
+0
*
hle: kernel: KThread: Remove thread types that do not exist.
bunnei
2021-01-29
1
-13
/
+2
*
core: hle: kernel: Rename Thread to KThread.
bunnei
2021-01-29
1
-0
/
+781