aboutsummaryrefslogtreecommitdiff
path: root/src/core
AgeCommit message (Collapse)Author
2021-12-19kernel: Manually destroy the current process during shut downameerj
Avoids a memory leak.
2021-12-18Merge pull request #7593 from german77/brrr_testMorph
core/hid: Cancel any vibration after the test
2021-12-17core: loader: kip: Minimal changes to fix KIP loading.bunnei
- Allows us to boot KIP (kernal apps), useful for testing the kernel.
2021-12-17core: hle: Remove global HLE lock.bunnei
- This was added early on as a hack to protect against some concurrency issues. - It's not clear that this serves any purpose anymore, and if it does, individual components should be fixed rather than using a global recursive mutex.
2021-12-16core/hid: Cancel any vibration after the testNarr the Reg
2021-12-14core/hid: Fix faulty analog triggersNarr the Reg
2021-12-13common/input: Avoid numerous large copies of CallbackStatusLioncash
CallbackStatus instances aren't the cheapest things to copy around (relative to everything else), given that they're currently 520 bytes in size and are currently copied numerous times when callbacks are invoked. Instead, we can pass the status by const reference to avoid all the copying.
2021-12-13Remove erroneous #pragma onceValeri
2021-12-12Merge pull request #7462 from bunnei/kernel-improve-schedulingbunnei
Kernel: Improve threading & scheduling V3
2021-12-12service/hid: Improve console motion accuracyNarr the Reg
2021-12-09Merge pull request #7519 from itsmeft24/masterbunnei
kernel: svc: Implement ProcessMemory and CodeMemory SVCs
2021-12-07Merge pull request #7525 from german77/notifabunnei
service/notif: Add notif:a and stub ListAlarmSettings, Initialize
2021-12-07Merge pull request #7521 from german77/dual_single_joyconsbunnei
service/hid: Implement SetNpadJoyAssignmentMode
2021-12-07Merge pull request #7488 from vonchenplus/support_multiple_videos_playingbunnei
Support multiple videos playing
2021-12-07Update k_code_memory.hitsmeft24
2021-12-07make KCodeMemory::GetSourceAddress constitsmeft24
Co-authored-by: Mai M. <mathew1800@gmail.com>
2021-12-06hle: kernel k_scheduler: EnableScheduling: Remove redundant ↵bunnei
GetCurrentThreadPointer calls.
2021-12-06hle: kernel k_process: Remove unnecessary .at usage with thread pinning methods.bunnei
2021-12-06hle: kernel: Remove unnecessary virtual specifier on NotifyAvailable.bunnei
2021-12-06hle: kernel: Remove unnecessary virtual specifier on EndWait.bunnei
2021-12-06hle: kernel: k_light_condition_variable: Revert unnecessary license comment ↵bunnei
changes.
2021-12-06hle: kernel: k_condition_variable: Revert unnecessary style changes.bunnei
2021-12-06hle: kernel: Remove unnecessary virtual specifier on CancelWait.bunnei
2021-12-06hle: kernel: service_thread: Force stop threads on destruction.bunnei
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