summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h (follow)
Commit message (Expand)AuthorAgeFilesLines
* Merge pull request #2397 from Subv/pulseGravatar bunnei2017-01-101-1/+1
|\
| * Kernel: Implemented Pulse event and timers.Gravatar Subv2017-01-051-1/+1
* | Kernel/Mutex: Update a mutex priority when a thread stops waiting on it.Gravatar Subv2017-01-041-1/+1
* | Kernel/Mutex: Implemented priority inheritance.Gravatar Subv2017-01-041-1/+1
* | Kernel: Object ShouldWait and Acquire calls now take a thread as a parameter.Gravatar Subv2017-01-041-4/+5
|/
* core: Remove HLE module, consolidate code & various cleanups.Gravatar bunnei2016-12-211-1/+2
* Merge pull request #2260 from Subv/schedulingGravatar bunnei2016-12-161-1/+7
|\
| * WaitSynch: Removed unused variables and reduced SharedPtr copies.Gravatar Subv2016-12-091-1/+4
| * Threading: Reworked the way our scheduler works.Gravatar Subv2016-12-031-0/+3
* | Kernel: Remove the Redirection handle type.Gravatar Subv2016-12-051-2/+0
* | Fixed the rebase mistakes.Gravatar Subv2016-11-301-18/+16
* | fixup! Kernel/IPC: Use Ports and Sessions as the fundamental building block ...Gravatar Subv2016-11-301-2/+3
* | Kernel/IPC: Use Ports and Sessions as the fundamental building block of Inte...Gravatar Subv2016-11-301-17/+19
|/
* Kernel/Loader: Grab the system mode from the NCCH ExHeader.Gravatar Subv2016-11-191-2/+2
* move ResetType to kernel.hGravatar wwylele2016-09-221-0/+6
* implement wait tree widgetGravatar wwylele2016-09-221-0/+3
* Remove empty newlines in #include blocks.Gravatar Emmanuel Gil Peyrot2016-09-211-4/+1
* Manually tweak source formatting and then re-run clang-formatGravatar Yuri Kunde Schlesner2016-09-181-2/+1
* Sources: Run clang-format on everything.Gravatar Emmanuel Gil Peyrot2016-09-181-28/+38
* Kernel/SVC: Implemented svcCreatePort.Gravatar Subv2016-06-111-1/+2
* Kernel: Added ClientPort and ServerPort classes.Gravatar Subv2016-06-051-2/+4
* Kernel: Add CodeSet case to Object::IsWaitableGravatar Yuri Kunde Schlesner2015-07-121-0/+1
* Core: Properly configure address space when loading a binaryGravatar Yuri Kunde Schlesner2015-07-111-0/+1
* Common: Cleanup key_map includes.Gravatar Emmanuel Gil Peyrot2015-06-281-4/+3
* kernel: Fix svcWaitSynch to always acquire requested wait objects.Gravatar bunnei2015-06-161-6/+0
* Kernel: Fix a warning introduced with ResourceLimit, and remove the fallback ...Gravatar Emmanuel Gil Peyrot2015-05-211-2/+1
* Core/ResourceLimits: Implemented the basic structure of ResourceLimits.Gravatar Subv2015-05-141-1/+2
* Kernel: Remove g_program_idGravatar Yuri Kunde Schlesner2015-05-081-6/+0
* Kernel: Introduce skeleton Process class to hold process dataGravatar Yuri Kunde Schlesner2015-05-081-7/+3
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-071-1/+2
* Move typedefs from kernel.h to more appropriate placesGravatar Yuri Kunde Schlesner2015-05-061-10/+1
* Kernel: Properly initialize and shutdown all modules.Gravatar bunnei2015-05-011-2/+3
* Build: Fixed some warningsGravatar Subv2015-02-121-1/+1
* Kernel: Make WaitObjects share ownership of Threads waiting on themGravatar Yuri Kunde Schlesner2015-02-021-5/+5
* Kernel: Remove Object::GetHandle (it's not used anymore :D)Gravatar Yuri Kunde Schlesner2015-02-021-5/+0
* Kernel: Introduce unique Object ids for debuggingGravatar Yuri Kunde Schlesner2015-02-021-0/+6
* Remove result.h InvalidHandleGravatar Yuri Kunde Schlesner2015-01-301-1/+2
* Move VAddr/PAddr typedefs to kernel.hGravatar Yuri Kunde Schlesner2015-01-301-0/+5
* Kernel: Renamed some functions for clarity.Gravatar bunnei2015-01-211-4/+4
* Kernel: Changed "ShouldWait" to return bool and "Acquire" to return void.Gravatar bunnei2015-01-211-6/+3
* WaitObject: Renamed "Wait" to "ShouldWait", made "ShouldWait" and "Acquire" p...Gravatar bunnei2015-01-211-10/+4
* Session: Change to a WaitObject.Gravatar bunnei2015-01-211-0/+1
* Kernel: Moved Wait and Acquire to WaitObject, added way to retrieve a WaitObj...Gravatar bunnei2015-01-211-16/+55
* Kernel: Get rid of WaitTypes and simplify lots of code, removing hacks.Gravatar bunnei2015-01-211-3/+2
* WaitSynchronizationN: Refactor to fix several bugsGravatar bunnei2015-01-211-6/+6
* Kernel: Separate WaitSynchronization into Wait and Acquire methods.Gravatar bunnei2015-01-211-2/+11
* WaitSynchronizationN: Implement return valuesGravatar bunnei2015-01-211-3/+4
* WaitObject: Added RemoveWaitingThread, fixed a bug, and cleanup.Gravatar bunnei2015-01-211-1/+7
* Kernel: Added WaitObject and changed "waitable" objects inherit from it.Gravatar bunnei2015-01-211-0/+25
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-091-8/+13