summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2021-12-06hle: kernel: k_light_lock: Implement CancelWait.bunnei
- Fixes a crash in Megadimension Neptunia VII.
2021-12-06hle: kernel: service_thread: Use std::jthread.bunnei
- Fixes a potential deadlock on service thread shutdown.
2021-12-06hle: kernel: k_thread: Skip reschedule on DisableDispatch with SC.bunnei
2021-12-06hle: kernel: k_thread: Rename sleeping_queue -> wait_queue.bunnei
2021-12-06hle: kernel: svc: Fix deadlock that can occur with single core.bunnei
2021-12-06hle: kernel: k_thread: Treat dummy threads as a special type.bunnei
2021-12-06hle: kernel: fix timing on thread preemptionFernandoS27
2021-12-06hle: kernel: fix scheduling ops from HLE host thread.FernandoS27
2021-12-06hle: kernel: Add a flag for indicating that the kernel is currently shutting ↵bunnei
down.
2021-12-06hle: kernel: KSynchronizationObject: Fix variable shadowing.bunnei
2021-12-06hle: kernel: Cleanup to match coding style.bunnei
2021-12-06hle: kernel: KProcess: Improvements for thread pinning.bunnei
2021-12-06hle: kernel: KThreadQueue: Remove deprecated code.bunnei
2021-12-06hle: kernel: KConditionVariable: Various updates & simplifications.bunnei
2021-12-06hle: kernel: KThread: Migrate to updated KThreadQueue (part 2).bunnei
2021-12-06hle: kernel: KThread: Migrate to updated KThreadQueue (part 1).bunnei
2021-12-06hle: kernel: KConditionVariable: Migrate to updated KThreadQueue.bunnei
2021-12-06hle: kernel: KServerSession: Migrate to updated KThreadQueue.bunnei
2021-12-06hle: kernel: KLightConditionVariable: Migrate to updated KThreadQueue.bunnei
2021-12-06hle: kernel: KLightLock: Migrate to updated KThreadQueue.bunnei
2021-12-06hle: kernel: KAddressArbiter: Migrate to updated KThreadQueue.bunnei
2021-12-06hle: kernel: KThread: Remove tracking of sync object from threads.bunnei
2021-12-06hle: kernel: Update KThreadQueue and migrate KSynchronizationObject.bunnei
2021-12-06core: hle: kernel: Disable dispatch count tracking on single core.bunnei
- This would have limited value, and would be a mess to handle properly.
2021-12-06core: hle: kernel: k_thread: Mark KScopedDisableDispatch as nodiscard.bunnei
2021-12-06core: cpu_manager: Use invalid core_id on init and simplify shutdown.bunnei
2021-12-06core: hle: kernel: k_auto_object: Add GetName method.bunnei
- Useful purely for debugging.
2021-12-06core: hle: kernel: DisableDispatch on suspend threads.bunnei
2021-12-06core: hle: kernel: k_scheduler: Improve DisableScheduling and EnableScheduling.bunnei
2021-12-06core: cpu_manager: Use KScopedDisableDispatch.bunnei
2021-12-06core: hle: kernel: Use CurrentPhysicalCoreIndex as appropriate.bunnei
2021-12-06core: hle: kernel: k_scheduler: Remove unnecessary MakeCurrentProcess.bunnei
2021-12-06core: hle: kernel: k_scheduler: Improve ScheduleImpl.bunnei
2021-12-06core: hle: kernel: k_scheduler: Improve Unload.bunnei
2021-12-06core: hle: kernel: k_process: DisableDispatch on main thread.bunnei
2021-12-06core: hle: kernel: k_handle_table: Use KScopedDisableDispatch as necessary.bunnei
2021-12-06core: hle: kernel: k_thread: Add KScopedDisableDispatch.bunnei
2021-12-06core: hle: kernel: Ensure idle threads are closed before destroying scheduler.bunnei
2021-12-06core: hle: kernel: Reflect non-emulated threads as core 3.bunnei
2021-12-06Merge pull request #7524 from german77/hid_stubbunnei
service/hid: Stub SetNpadCaptureButtonAssignment and ClearNpadCaptureButtonAssignment
2021-12-05service/hid: Stub SetNpadCaptureButtonAssignment and ↵german77
ClearNpadCaptureButtonAssignment Used by ring fit adventure 1.2.0
2021-12-05loader: Support loading subsdk{8,9}jam1garner
2021-12-05general: Add missing copyright noticesameerj
2021-12-05core/hid: Add missing controller typegerman77
2021-12-05Merge pull request #7494 from Morph1984/no-time-to-waitFernando S
native_clock: Wait for less time in EstimateRDTSCFrequency
2021-12-04core/hid: Ensure only valid npad are connectedgerman77
2021-12-03Merge pull request #7467 from liushuyu/fix-linux-decodingbunnei
video_core/codecs: more robust ffmpeg hwdecoder selection logic
2021-12-03native_clock: Wait for less time in EstimateRDTSCFrequencyMorph
In my testing, waiting for 200ms provided the same level of precision as the previous implementation when estimating the RDTSC frequency. This significantly improves the yuzu executable launch times since we reduced the wait time from 3 seconds to 200 milliseconds.
2021-12-03Merge pull request #7489 from Morph1984/steady-clockbunnei
general: Replace high_resolution_clock with steady_clock
2021-12-02video_core/cmake: link against libva explicitly ...liushuyu
... to fix build on Flatpak (and self-builds)