| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-10-18 | core: hle: kernel: k_process: Improve management of page table & cleanup. | bunnei | |
| 2022-10-18 | core: hle: kernel: Remove junk. | bunnei | |
| 2022-10-18 | core: hle: kernel: Integration application memory block slab manager. | bunnei | |
| 2022-10-03 | common: remove "yuzu:" prefix from thread names | Liam | |
| 2022-07-25 | kernel: unlayer CPU interrupt handling | Liam | |
| 2022-07-25 | Merge pull request #8549 from liamwhite/kscheduler-sc | Morph | |
| kernel: use KScheduler from Mesosphere | |||
| 2022-07-22 | Project Andio | Kelebek1 | |
| 2022-07-14 | kernel: fix issues with single core mode | Liam | |
| 2022-07-14 | kernel: use KScheduler from mesosphere | Liam | |
| 2022-07-10 | PR | Kelebek1 | |
| 2022-07-10 | Rework CoreTiming | Kelebek1 | |
| 2022-06-23 | kernel: make current thread pointer thread local | Liam | |
| 2022-06-22 | Merge pull request #8483 from liamwhite/fire-emblem-three-semaphores | bunnei | |
| kernel: wait for threads to stop on pause | |||
| 2022-06-18 | kernel: wait for threads to stop on pause | Liam | |
| 2022-06-15 | kernel: fix some uses of disable_count | Liam | |
| 2022-06-14 | kernel: implement KProcess suspension | Liam | |
| 2022-06-13 | kernel: fix passthrough of local captures in lambda | Liam | |
| 2022-06-08 | CpuManager: simplify pausing | Liam | |
| 2022-04-23 | general: Convert source file copyright comments over to SPDX | Morph | |
| This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later. | |||
| 2022-04-16 | hidbus: Implement hidbus and ringcon | german77 | |
| 2022-04-12 | Merge pull request #8165 from bunnei/ensure-session-port-cleanup | bunnei | |
| Kernel: Track open references to KServerPort and KServerSession. | |||
| 2022-04-11 | Merge pull request #8157 from lat9nq/kernel-races | bunnei | |
| kernel: Fix some data races | |||
| 2022-04-08 | hle: kernel: Unify and integrate reference tracking for ↵ | bunnei | |
| KServerPort/KServerSession. - These are not managed elsewhere, and need to be tracked and closed on emulation shutdown. | |||
| 2022-04-07 | core/hle: Replace lock_guard with scoped_lock | Merry | |
| 2022-04-03 | kernel: Fix current_process race | lat9nq | |
| TSan reported a race at :258 and :803, so make current_process an atomic pointer. | |||
| 2022-04-02 | hle: kernel: Create a default thread for services that do not need their own ↵ | bunnei | |
| host thread. | |||
| 2022-03-19 | core: Reduce unused includes | ameerj | |
| 2022-03-14 | core: hle: kernel: Allocate dummy threads on host thread storage. | bunnei | |
| - Fixes a crash where on subsequent boots, long-lived host threads would have their dummy threads freed. | |||
| 2022-03-14 | core: hle: kernel: Downgrade dangling objects warning to debug. | bunnei | |
| - It is not impossible to leak kernel objects, so this is not really any issue anymore (albeit, still interesting). | |||
| 2022-03-14 | core: hle: kernel: Make object list container global and ensure it is reset ↵ | bunnei | |
| on each emulation session. | |||
| 2022-03-14 | core: hle: kernel: Remove server session tracking. | bunnei | |
| - These are now allocated/managed by emulated memory, so we do not need to track and free them on shutdown. | |||
| 2022-03-14 | core: hle: kernel: Update init_slab_heap, use device memory, and add ↵ | bunnei | |
| KThreadLocalPage and KPageBuffer. - Refreshes our slab initialization code to latest known behavior. - Moves all guest kernel slabs into emulated device memory. - Adds KThreadLocalPage and KPageBuffer, which we will use for accurate TLS management. | |||
| 2022-02-27 | hle: kernel: Re-create memory layout at initialization. | bunnei | |
| - As this can only be derived once. | |||
| 2022-02-27 | hle: kernel: Remove unused pool locals. | bunnei | |
| 2022-02-27 | hle: kernel: k_memory_manager: Rework for latest kernel behavior. | bunnei | |
| - Updates the KMemoryManager implementation against latest documentation. - Reworks KMemoryLayout to be accessed throughout the kernel. - Fixes an issue with pool sizes being incorrectly reported. | |||
| 2022-02-21 | core: hle: kernel: Remove resource limit hack for PhysicalMemory. | bunnei | |
| - With prior changes, we now report the correct amount of physical memory available to the emulated process. | |||
| 2022-01-20 | hle: kernel: Remove redundant tracking of dummy threads. | bunnei | |
| - These are already tracked by kernel's registered_objects member. | |||
| 2022-01-18 | Merge pull request #7701 from bunnei/clear-mem-pages | bunnei | |
| Kernel Memory Updates (Part 3): Clear KMemoryManager pages & other fixes | |||
| 2022-01-17 | Merge pull request #7712 from bunnei/fix-thread-exit | bunnei | |
| Accurately implement thread exit | |||
| 2022-01-14 | hle: kernel: k_memory_manager: Clear pages on allocation & free. | bunnei | |
| - Heap pages should be zero'd. - Also explicitly passed along heap allocation option. | |||
| 2022-01-14 | core: hle: kernel: Instantiate a kernel instance of KWorkerTaskManager. | bunnei | |
| 2022-01-14 | hle: kernel: Fix service_threads access to be thread safe V2. | bunnei | |
| - PR #7699 attempted to fix CreateServiceThread and ReleaseServiceThread to be thread safe, but inadvertently introduced a possible dead-lock. - With this PR, we use a worker thread to manage the service thread list, allowing it only to be accessed by a single thread, and guaranteeing threads will not destroy themselves. - Fixes a rare crash in Pokemon Sword/Shield, I've now run this game for ~12 hours non-stop and am quite confident this is a good solution for this issue. | |||
| 2022-01-13 | hle: kernel: Fix service_threads access to be thread safe. | bunnei | |
| - CreateServiceThread and ReleaseServiceThread can be accessed by different threads, uses a lock to make this thread safe. - Fixes a rare crash in Pokemon Sword/Shield that can occur when a new service thread is being created while an old one is being destroyed. | |||
| 2021-12-19 | kernel: Manually destroy the current process during shut down | ameerj | |
| Avoids a memory leak. | |||
| 2021-12-06 | hle: kernel: fix timing on thread preemption | FernandoS27 | |
| 2021-12-06 | hle: kernel: Add a flag for indicating that the kernel is currently shutting ↵ | bunnei | |
| down. | |||
| 2021-12-06 | core: hle: kernel: DisableDispatch on suspend threads. | bunnei | |
| 2021-12-06 | core: hle: kernel: Use CurrentPhysicalCoreIndex as appropriate. | bunnei | |
| 2021-12-06 | core: hle: kernel: Ensure idle threads are closed before destroying scheduler. | bunnei | |
| 2021-12-06 | core: hle: kernel: Reflect non-emulated threads as core 3. | bunnei | |
