summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/timer.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: Remove the Timer classGravatar Lioncash2019-01-311-84/+0
| | | | | | | | | | | | A holdover from citra, the Horizon kernel on the switch has no prominent kernel object that functions as a timer. At least not to the degree of sophistication that this class provided. As such, this can be removed entirely. This class also wasn't used at all in any meaningful way within the core, so this was just code sitting around doing nothing. This also allows removing a few things from the main KernelCore class that allows it to use slightly less resources overall (though very minor and not anything really noticeable).
* kernel/timer: Remove unnecessary WakeupAllWaitingThreads() overrideGravatar Lioncash2019-01-301-4/+0
| | | | | This implementation just calls the base class variant of the function, so this isn't necessary.
* Removed pulse event typeGravatar David Marcec2019-01-041-3/+0
| | | | Pulse is considered a hack and nothing should be using it. We should completely remove it
* kernel: Eliminate kernel global stateGravatar Lioncash2018-08-281-35/+10
| | | | | | | | | | | | | | | | | | | | | | As means to pave the way for getting rid of global state within core, This eliminates kernel global state by removing all globals. Instead this introduces a KernelCore class which acts as a kernel instance. This instance lives in the System class, which keeps its lifetime contained to the lifetime of the System class. This also forces the kernel types to actually interact with the main kernel instance itself instead of having transient kernel state placed all over several translation units, keeping everything together. It also has a nice consequence of making dependencies much more explicit. This also makes our initialization a tad bit more correct. Previously we were creating a kernel process before the actual kernel was initialized, which doesn't really make much sense. The KernelCore class itself follows the PImpl idiom, which allows keeping all the implementation details sealed away from everything else, which forces the use of the exposed API and allows us to avoid any unnecessary inclusions within the main kernel header.
* kernel: Move object class to its own source filesGravatar Lioncash2018-08-011-1/+1
| | | | | | General moving to keep kernel object types separate from the direct kernel code. Also essentially a preliminary cleanup before eliminating global kernel state in the kernel code.
* core_timing: Split off utility functions into core_timing_utilGravatar MerryMage2018-07-241-0/+1
|
* Rename logging macro back to LOG_*Gravatar James Rowe2018-07-021-2/+2
|
* core_timing: Namespace all functions and constants in core_timing's headerGravatar Lioncash2018-04-301-2/+3
| | | | All of these variables and functions are related to timings and should be within the namespace.
* kernel: Migrate logging macros to fmt-compatible onesGravatar Lioncash2018-04-251-2/+2
|
* Format: Run the new clang format on everythingGravatar James Rowe2018-01-201-1/+1
|
* CoreTiming: Reworked CoreTiming (cherry-picked from Citra #3119)Gravatar B3n302018-01-081-6/+3
| | | | * CoreTiming: New CoreTiming; Add Test for CoreTiming
* ResultVal: Remove MoveFrom()Gravatar Yuri Kunde Schlesner2017-06-181-1/+1
| | | | | Replace it with std::move(result_val).Unwrap(), or Foo().Unwrap() in case you already have an rvalue.
* Kernel: Move HandleTable to a separate fileGravatar Yuri Kunde Schlesner2017-05-291-0/+1
|
* Timer: restore missing signaled=true from #2421Gravatar wwylele2017-02-271-0/+2
|
* Fix log entry in timer::signal (#2600)Gravatar B3n302017-02-271-1/+1
|
* Timers: Immediately signal the timer if it was started with an initial value ↵Gravatar Subv2017-02-211-16/+23
| | | | of 0.
* Merge pull request #2397 from Subv/pulseGravatar bunnei2017-01-101-5/+7
|\ | | | | Kernel: Implemented Pulse event and timers.
| * Kernel: Implemented Pulse event and timers.Gravatar Subv2017-01-051-5/+7
| | | | | | | | Closes #1904
* | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv2017-01-041-3/+3
|/ | | | This will be useful when implementing mutex priority inheritance.
* Threading: Reworked the way our scheduler works.Gravatar Subv2016-12-031-4/+0
| | | | | | | | | | Threads will now be awakened when the objects they're waiting on are signaled, instead of repeating the WaitSynchronization call every now and then. The scheduler is now called once after every SVC call, and once after a thread is awakened from sleep by its timeout callback. This new implementation is based off reverse-engineering of the real kernel. See https://gist.github.com/Subv/02f29bd9f1e5deb7aceea1e8f019c8f4 for a more detailed description of how the real kernel handles rescheduling.
* Kernel/Events: Log an error when trying to create Pulse events and timers.Gravatar Subv2016-11-191-0/+5
| | | | Related to #1904
* Use negative priorities to avoid special-casing the self-includeGravatar Yuri Kunde Schlesner2016-09-211-1/+1
|
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-3/+1
| | | | | | | This makes clang-format useful on those. Also add a bunch of forgotten transitive includes, which otherwise prevented compilation.
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-181-6/+3
|
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-8/+11
|
* svc: Make ResetType an enum classGravatar Lioncash2016-03-121-1/+1
|
* HLE/Timers: Reset OneShot timers when they are acquired instead of when ↵Gravatar Subv2015-12-291-3/+3
| | | | | | they're triggered. Closes #1139
* general: Silence some warnings when using clangGravatar Lioncash2015-09-161-2/+4
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-291-1/+1
|
* Kernel: Move reschedules from SVCs to actual mechanisms that reschedule.Gravatar bunnei2015-05-201-0/+4
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-071-1/+2
|
* Kernel: Properly initialize and shutdown all modules.Gravatar bunnei2015-05-011-1/+2
|
* Kernel: Use the correct format string for u64 hex.Gravatar Emmanuel Gil Peyrot2015-04-141-1/+1
|
* Build: Fixed some warningsGravatar Subv2015-02-121-1/+1
|
* Asserts: break/crash program, fit to style guide; log.h->assert.hGravatar archshift2015-02-101-1/+1
| | | | | | | Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
* Kernel: Stop creating useless Handles during object creationGravatar Yuri Kunde Schlesner2015-02-021-4/+3
| | | | | They're finally unnecessary, and will stop cluttering the application's handle table.
* Explicitly instantiate constructors/destructors for Kernel objectsGravatar Yuri Kunde Schlesner2015-02-021-0/+3
| | | | | | This should speed up compile times a bit, as well as enable more liberal use of forward declarations. (Due to SharedPtr not trying to emit the destructor anymore.)
* Kernel: Use separate Handle tables for CoreTiming userdataGravatar Yuri Kunde Schlesner2015-02-021-7/+8
| | | | This is to support the removal of GetHandle soon
* Kernel: Remove previous scheduled event when a Timer is re-SetGravatar Yuri Kunde Schlesner2015-02-021-0/+3
|
* Kernel: Convert Timer to (mostly) not use HandlesGravatar Yuri Kunde Schlesner2015-01-301-76/+31
|
* Kernel: Remove useless/duplicated comments; mark functions staticGravatar Yuri Kunde Schlesner2015-01-301-1/+1
|
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-211-1/+1
| | | | | - ReleaseNextThread->WakeupNextThread - ReleaseAllWaitingThreads->WakeupAllWaitingThreads.
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-211-4/+4
|
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" ↵Gravatar bunnei2015-01-211-1/+1
| | | | pure virtual.
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-211-7/+2
|
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-211-3/+3
| | | | | | - Separate wait checking from waiting the current thread - Resume thread when wait_all=true only if all objects are available at once - Set output to correct wait object index when there are duplicate handles
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-211-1/+5
|
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-211-3/+3
|
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei2015-01-211-9/+3
|
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-091-5/+5
|