summaryrefslogtreecommitdiffstats
path: root/src/core/tools/freezer.h (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-12-23core_timing: remove user data valueLiam1-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
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.
2021-05-03core: Resolve misc cases of variable shadowingLioncash1-1/+1
Resolves shadowing warnings that aren't in a particularly large subsection of core. Brings us closer to turning -Wshadow into an error. All that remains now is for cases in the kernel (left untouched for now since a big change by bunnei is pending), and a few left over in the service code (will be tackled next).
2020-08-06freezer: Move entry finding to its own functionLioncash1-1/+6
Cleans up the callsites in other functions.
2020-07-28core_timing: Make use of uintptr_t to represent user_dataLioncash1-1/+1
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.
2020-07-16core_timing: Make TimedCallback take std::chrono::nanosecondsLioncash1-1/+2
Enforces our desired time units directly with a concrete type.
2020-04-17core: memory: Move to Core::Memory namespace.bunnei1-3/+3
- helpful to disambiguate Kernel::Memory namespace.
2019-11-27core: Prepare various classes for memory read/write migrationLioncash1-1/+6
Amends a few interfaces to be able to handle the migration over to the new Memory class by passing the class by reference as a function parameter where necessary. Notably, within the filesystem services, this eliminates two ReadBlock() calls by using the helper functions of HLERequestContext to do that for us.
2019-11-27core_timing: Use better reference tracking for EventType. (#3159)bunnei1-1/+2
* core_timing: Use better reference tracking for EventType. - Moves ownership of the event to the caller, ensuring we don't fire events for destroyed objects. - Removes need for unique names - we won't be using this for save states anyways.
2019-06-21freezer: Update documentationZach Hilman1-1/+8
2019-06-21core: Move Freezer class to tools namespaceZach Hilman1-2/+2
2019-06-21freezer: Add documentation for methodsZach Hilman1-11/+28
2019-06-21memory: Add class to manage and enforce memory freezingZach Hilman1-0/+58