| Age | Commit message (Collapse) | Author |
|
|
|
kernel: fix usage of waiter_list in Finalize
|
|
|
|
|
|
|
|
kernel: clean up waiting implementation
|
|
common/fiber: make fibers easier to use
|
|
|
|
|
|
Replace multiple names with a better name
|
|
Support `InfoType_MesosphereCurrentProcess`
|
|
|
|
|
|
|
|
Co-authored-by: liamwhite <liamwhite@users.noreply.github.com>
|
|
|
|
|
|
|
|
KPageTable: Remove extraneous assert
|
|
kernel: wait for threads to stop on pause
|
|
Since start is always 0 and VAddr is unsigned, we can safely remove this assert.
|
|
core/debugger: memory breakpoint support
|
|
kernel: fix some uses of disable_count
|
|
|
|
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
|
|
|
|
|
|
kernel: implement KProcess suspension
|
|
kernel: notify debugger on break SVC
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
CpuManager: simplify pausing
|
|
|
|
|
|
|
|
|
|
|
|
Resolves the C4146 compiler warning on MSVC.
|
|
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.
|
|
|
|
hle: kernel: Use std::mutex instead of spin locks for most kernel locking.
|
|
|
|
Kernel: Track open references to KServerPort and KServerSession.
|
|
hle: kernel: Invalidate entire icache in UnmapProcessMemory and UnmapCodeMemory (fixes #8174)
|
|
|