| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-06-23 | kernel: make current thread pointer thread local | Liam | |
| 2022-06-22 | Merge pull request #8491 from Morph1984/extra-assert | bunnei | |
| KPageTable: Remove extraneous assert | |||
| 2022-06-22 | Merge pull request #8483 from liamwhite/fire-emblem-three-semaphores | bunnei | |
| kernel: wait for threads to stop on pause | |||
| 2022-06-21 | KPageTable: Remove extraneous assert | Morph | |
| Since start is always 0 and VAddr is unsigned, we can safely remove this assert. | |||
| 2022-06-21 | Merge pull request #8432 from liamwhite/watchpoint | bunnei | |
| core/debugger: memory breakpoint support | |||
| 2022-06-21 | Merge pull request #8468 from liamwhite/dispatch-tracking | bunnei | |
| kernel: fix some uses of disable_count | |||
| 2022-06-18 | kernel: wait for threads to stop on pause | Liam | |
| 2022-06-16 | Implement ExitProcess svc | Nikita Strygin | |
| Currently this just stops all the emulation This works under assumption that only application will try to use ExitProcess, with services not touching it If application exits - it quite makes sense to end the emulation | |||
| 2022-06-16 | core/debugger: memory breakpoint support | Liam | |
| 2022-06-15 | kernel: fix some uses of disable_count | Liam | |
| 2022-06-16 | Merge pull request #8457 from liamwhite/kprocess-suspend | Fernando S | |
| kernel: implement KProcess suspension | |||
| 2022-06-15 | Merge pull request #8464 from liamwhite/break-debug | Mai | |
| kernel: notify debugger on break SVC | |||
| 2022-06-14 | kernel: notify debugger on break SVC | Liam | |
| 2022-06-14 | core: centralize profile scope for Dynarmic | Liam | |
| 2022-06-14 | kernel: implement KProcess suspension | Liam | |
| 2022-06-13 | kernel: fix passthrough of local captures in lambda | Liam | |
| 2022-06-13 | kernel: ensure class token lambda exit is unreachable | Liam | |
| 2022-06-13 | kernel: fix inconsistency in AutoObjectTraits macro definitions | Liam | |
| 2022-06-13 | common: Change semantics of UNREACHABLE to unconditionally crash | Liam | |
| 2022-06-13 | Merge pull request #8388 from liamwhite/simpler-pause | bunnei | |
| CpuManager: simplify pausing | |||
| 2022-06-09 | kernel: fix KCodeMemory initialization | Liam | |
| 2022-06-08 | CpuManager: simplify pausing | Liam | |
| 2022-06-01 | core/debugger: Support reading guest thread names | Liam | |
| 2022-06-01 | core/debugger: Improved stepping mechanism and misc fixes | Liam | |
| 2022-06-01 | core/debugger: Implement new GDB stub debugger | Liam | |
| 2022-04-24 | kernel: svc: Replace -1ULL with 0xFFFFFFFFFFFFFFFF | Morph | |
| Resolves the C4146 compiler warning on MSVC. | |||
| 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-16 | Merge pull request #8172 from bunnei/kernel-mutex | Fernando S | |
| hle: kernel: Use std::mutex instead of spin locks for most kernel locking. | |||
| 2022-04-13 | service: jit: Implement the JIT service | Liam | |
| 2022-04-12 | Merge pull request #8165 from bunnei/ensure-session-port-cleanup | bunnei | |
| Kernel: Track open references to KServerPort and KServerSession. | |||
| 2022-04-12 | Merge pull request #8178 from tech-ticks/skyline-icache-fix | bunnei | |
| hle: kernel: Invalidate entire icache in UnmapProcessMemory and UnmapCodeMemory (fixes #8174) | |||
| 2022-04-11 | core: hle: kernel: k_thread: Rework dummy thread waiting. | bunnei | |
| 2022-04-11 | hle: kernel: k_spin_lock: Remove unused ThreadPause. | bunnei | |
| 2022-04-11 | hle: kernel: Use std::mutex instead of spin locks for most kernel locking. | bunnei | |
| 2022-04-11 | Merge pull request #8157 from lat9nq/kernel-races | bunnei | |
| kernel: Fix some data races | |||
| 2022-04-09 | hle: kernel: Invalidate entire icache in UnmapProcessMemory and ↵ | tech-ticks | |
| UnmapCodeMemory (fixes #8174) | |||
| 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-08 | hle: kernel: k_server_port: Release ref-counted host emulation members on ↵ | bunnei | |
| Destroy. | |||
| 2022-04-08 | hle: kernel: k_auto_object: Move unregister with kernel to after Destroy. | bunnei | |
| - Destructor is no longer invoked, so our object counting was off. | |||
| 2022-04-08 | hle: kernel: hle_ipc: HasSessionRequestHandler: Check if domain handler is ↵ | bunnei | |
| expired rather than locking. | |||
| 2022-04-07 | core/hle: Replace lock_guard with scoped_lock | Merry | |
| 2022-04-07 | Merge pull request #8148 from merryhime/interrupts | Fernando S | |
| dynarmic: Better interrupts | |||
| 2022-04-05 | k_system_control: Fix data race | lat9nq | |
| `return distribution(gen)` is a data race between a read and a write in two threads, reported by TSan. Remove static random number generators so they aren't using the same generator. | |||
| 2022-04-03 | k_auto_object: Fix data race | lat9nq | |
| Change the memory order to acqure-release when we decrement the reference count. Prevents a race with line 89 reported by TSan. | |||
| 2022-04-03 | k_thread: Fix data race | lat9nq | |
| TSan reports a data race between writing at cpp:1162 and reading at h:262. Make the thread_state atomic to prevent this. | |||
| 2022-04-03 | k_process: Fix data race | lat9nq | |
| TSan reported a race between thread 36 and thread 34, a read at :225 and a write at :225 respectively. Make total_proces_running_time_ticks atomic to avoid this race. | |||
| 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-03 | k_scheduler_lock: Fix data race | lat9nq | |
| TSan reports a race between the main thread and T37 during IsLockedByCurrentThread and when it's set at the end of Lock(), respectively. Set owner_thread to an atomic pointer to fix it. Co-authored-by: bunnei <bunneidev@gmail.com> | |||
| 2022-04-03 | dynarmic: Better interrupts | merry | |
