summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel (follow)
Commit message (Expand)AuthorAgeFilesLines
* 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