summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* mutex: added preliminary SyncRequest/WaitSynchronization, added some comments...Gravatar bunnei2014-05-271-0/+6
* event: fixed typos and updated CMakeListsGravatar bunnei2014-05-271-1/+1
* event: added SetEventLocked method to change status an events lockGravatar bunnei2014-05-272-0/+18
* kernel: added event module to support creation of CTR "Event" objectsGravatar bunnei2014-05-272-0/+119
* mutex: removed docstring comment that is no longer relevantGravatar bunnei2014-05-261-1/+0
* mutex: added additional docstringsGravatar bunnei2014-05-261-0/+2
* kernel: added WaitSynchronization method to Kernel::ObjectGravatar bunnei2014-05-263-0/+29
* kernel: updated SyncRequest to take boolean thread wait result as a parameterGravatar bunnei2014-05-263-5/+20
* kernel: added enum for known CurrentThread and CurrentProcess handlesGravatar bunnei2014-05-261-0/+5
* kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestGravatar bunnei2014-05-263-0/+11
* thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reaso...Gravatar bunnei2014-05-222-4/+4
* thread: removed unused SwitchContext/Reschedule reason field, added missing a...Gravatar bunnei2014-05-222-4/+4
* kernel: refactored function naming to remove "__" prefixGravatar bunnei2014-05-225-62/+72
* thread: moved ThreadStatus/WaitType to header, added support for arg on Creat...Gravatar bunnei2014-05-222-35/+40
* thread: fixed bug where result of __NextThread was not being properly checked...Gravatar bunnei2014-05-211-1/+1
* mutex: refactored the interface to code to return a Mutex* handleGravatar bunnei2014-05-202-3/+13
* mutex: initial commit of HLE moduleGravatar bunnei2014-05-202-0/+148
* kernel: fixed include, in general include "common.h" not "common_types.h"Gravatar bunnei2014-05-201-1/+1
* thread: added correct lowest thread priority, added a thread priority check, ...Gravatar bunnei2014-05-202-6/+10
* thread: exposed ResumeThreadFromWait function for use in other kernel modulesGravatar bunnei2014-05-202-8/+11
* thread: moved threading calls to the Kernel namespaceGravatar bunnei2014-05-203-101/+115
* ARM_Interface: added SaveContext and LoadContext functions for HLE thread swi...Gravatar bunnei2014-05-201-36/+2
* renamed "syscall" module to "svc" (more accurate naming)Gravatar bunnei2014-05-201-1/+1
* thread: whitespace change - fixed * and & placementGravatar bunnei2014-05-202-27/+27
* - created a Kernel namespaceGravatar bunnei2014-05-204-67/+79
* thread: added declaration for __KernelReschedule to be used by syscall moduleGravatar bunnei2014-05-191-0/+3
* - updated service(s) to be KernelObject'sGravatar bunnei2014-05-181-4/+5
* - moved Handle/Result definitions to kernel.hGravatar bunnei2014-05-182-3/+2
* changed a commentGravatar bunnei2014-05-172-2/+2
* - added enum ThreadProcessorIdGravatar bunnei2014-05-172-53/+107
* - replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTHGravatar bunnei2014-05-163-8/+12
* completely gutted/refactored threading code to be simplerGravatar bunnei2014-05-152-658/+230
* changed "UID" to "Handle" to be a little more consistent with CTR namingGravatar bunnei2014-05-152-18/+21
* - added helper function for __KernelCreateThreadGravatar bunnei2014-05-142-4/+76
* changed primary thread priority to 0x30 - this is typical, not 0x31Gravatar bunnei2014-05-141-1/+2
* fixed thread reset to not set stack addressGravatar bunnei2014-05-131-1/+1
* various cleanups / remove unused codeGravatar bunnei2014-05-132-65/+29
* added a bunch of threading code, recycled from PPSSPP, with lots of hacks in ...Gravatar bunnei2014-05-132-70/+543
* - added __KernelLoadExec functionGravatar bunnei2014-05-132-13/+35
* added initial kernel/thread modulesGravatar bunnei2014-05-094-0/+527