summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/time_manager.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* hle: kernel: KThread: Migrate to updated KThreadQueue (part 1).bunnei2021-12-071-1/+5
|
* core: Remove unused includesameerj2021-11-041-3/+0
|
* hle: kernel: Migrate to KHandleTable.bunnei2021-05-061-1/+0
|
* hle: kernel: Migrate more of KThread to KAutoObject.bunnei2021-05-061-10/+6
|
* hle: kernel: TimeManager: Simplify to not rely on previous EmuThreadHandle implementation.bunnei2021-01-291-30/+10
|
* core: hle: kernel: Rename Thread to KThread.bunnei2021-01-291-4/+4
|
* core: hle: Integrate new KConditionVariable and KAddressArbiter implementations.bunnei2021-01-111-4/+2
|
* hle: kernel: thread: Replace ThreadStatus/ThreadSchedStatus with a single ThreadState.bunnei2021-01-111-2/+1
| | | | - This is how the real kernel works, and is more accurate and simpler.
* kernel: time_manager: Add missing lock guards.bunnei2020-12-061-3/+10
|
* hle: kernel: Migrate to KScopedSchedulerLock.bunnei2020-12-061-1/+1
|
* hle: kernel: Rewrite scheduler implementation based on Mesopshere.bunnei2020-12-061-1/+1
|
* kernel: time_manager: Protect access with a mutex.bunnei2020-11-291-1/+3
|
* hle: kernel: time_manager: Avoid a crash on process exit.bunnei2020-11-291-1/+4
|
* core_timing: Make use of uintptr_t to represent user_dataLioncash2020-07-281-5/+5
| | | | Makes the interface future-proofed for supporting other platforms in the event we ever support platforms with differing pointer sizes. This way, we have a type in place that is always guaranteed to be able to represent a pointer exactly.
* core_timing: Make TimedCallback take std::chrono::nanosecondsLioncash2020-07-161-1/+1
| | | | Enforces our desired time units directly with a concrete type.
* core_timing: Make use of std::chrono with ScheduleEventLioncash2020-07-161-1/+2
|
* Kernel: Corrections to TimeManager, Scheduler and Mutex.Fernando Sahmkow2020-06-271-2/+3
|
* Kernel: Fixes, corrections and asserts to scheduler and different svcs.Fernando Sahmkow2020-06-271-2/+0
|
* SVC: Correct WaitSynchronization, WaitProcessWideKey, SignalProcessWideKey.Fernando Sahmkow2020-06-271-2/+16
|
* General: Recover Prometheus project from harddrive failure Fernando Sahmkow2020-06-271-1/+1
| | | | | | | This commit: Implements CPU Interrupts, Replaces Cycle Timing for Host Timing, Reworks the Kernel's Scheduler, Introduce Idle State and Suspended State, Recreates the bootmanager, Initializes Multicore system.
* Kernel: Address Feedback.Fernando Sahmkow2020-02-221-2/+4
|
* Kernel: Implement Time Manager.Fernando Sahmkow2020-02-221-0/+42