summaryrefslogtreecommitdiff
path: root/src/core (follow)
Commit message (Expand)AuthorAgeFilesLines
* svc: added ArbitrationType enumerationGravatar bunnei2014-05-291-0/+9
* apt: added stubbed function for InquireNotificationGravatar bunnei2014-05-281-78/+86
* hle: properly cast 64-bit function wrapper parameters to (u64)Gravatar bunnei2014-05-281-2/+2
* hle: removed PARAM64 macro (this was incorrect), made several bug fixes accor...Gravatar bunnei2014-05-282-3/+2
* lcd: moved kFrameTicks to lcd.h for use in other modulesGravatar bunnei2014-05-282-2/+2
* service: changed interface to return 0 (no error) when a service method is u...Gravatar bunnei2014-05-281-2/+2
* APT_U: added stubbed function for APT_U::Enable, fixed some log messages to b...Gravatar bunnei2014-05-271-3/+10
* mutex: added preliminary SyncRequest/WaitSynchronization, added some comments...Gravatar bunnei2014-05-271-0/+6
* svc: implemented WaitSynchronization1, WaitSynchronizationN, and CreateEventGravatar bunnei2014-05-271-14/+54
* APT_U: added event creation to Initialize methodGravatar bunnei2014-05-271-1/+11
* event: fixed typos and updated CMakeListsGravatar bunnei2014-05-272-1/+2
* 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-274-0/+127
* 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-264-0/+39
* kernel: updated SyncRequest to take boolean thread wait result as a parameterGravatar bunnei2014-05-265-10/+33
* svc: added some assertionsGravatar bunnei2014-05-261-6/+4
* service: Renamed Sync to SyncRequestGravatar bunnei2014-05-261-1/+1
* kernel: added enum for known CurrentThread and CurrentProcess handlesGravatar bunnei2014-05-261-0/+5
* srv: added a real mutex for GetProcSemaphore (instead of stubbed)Gravatar bunnei2014-05-261-3/+10
* svc: changed SendSyncRequest to use Kernel::Object SyncRequest (instead of ju...Gravatar bunnei2014-05-261-2/+2
* kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestGravatar bunnei2014-05-264-6/+11
* svc: added stub for DuplicateHandle SVC callGravatar bunnei2014-05-261-1/+8
* core: added Kernel::Reschedule() call to check for thread changes, shortened ...Gravatar bunnei2014-05-221-1/+6
* svc: added a check to ensure that a service was implemented before attempting...Gravatar bunnei2014-05-221-1/+5
* lcd: added thread wait after (faked) vblank interrupt (would have) occurredGravatar bunnei2014-05-221-0/+4
* thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reaso...Gravatar bunnei2014-05-223-6/+6
* thread: removed unused SwitchContext/Reschedule reason field, added missing a...Gravatar bunnei2014-05-223-12/+9
* kernel: refactored function naming to remove "__" prefixGravatar bunnei2014-05-226-65/+75
* core: moved armcopro.cpp to correct filter folder (arm/interpreter)Gravatar bunnei2014-05-221-3/+3
* thread: moved ThreadStatus/WaitType to header, added support for arg on Creat...Gravatar bunnei2014-05-222-35/+40
* APT_U: added a debug log on calling GetLockHandleGravatar bunnei2014-05-221-0/+1
* arm_interpreter: fixed load context to currently resume a threadGravatar bunnei2014-05-221-1/+4
* thread: fixed bug where result of __NextThread was not being properly checked...Gravatar bunnei2014-05-211-1/+1
* svc: added Kernel::Reschedule to svc WaitSynchronization1, updated log messag...Gravatar bunnei2014-05-211-4/+7
* svc: enabled use of newly created kernel thread handleGravatar bunnei2014-05-201-5/+5
* mutex: refactored the interface to code to return a Mutex* handleGravatar bunnei2014-05-204-5/+16
* mutex: initial commit of HLE moduleGravatar bunnei2014-05-207-10/+166
* svc: added some commentsGravatar bunnei2014-05-201-0/+7
* kernel: fixed include, in general include "common.h" not "common_types.h"Gravatar bunnei2014-05-201-1/+1
* service: removed redundant include of common_types.hGravatar bunnei2014-05-201-1/+0
* arm: removed include of windows.h from armdefs.h to arminit.c (only module th...Gravatar bunnei2014-05-202-4/+3
* armemu: missed rename of "Syscall" to "SVC"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-204-103/+117
* ARM_Interpreter/ARM_Interface: Fixed member variable naming to be consistent ...Gravatar bunnei2014-05-203-45/+45
* ARM_Interface: added SaveContext and LoadContext functions for HLE thread swi...Gravatar bunnei2014-05-204-37/+65
* renamed "syscall" module to "svc" (more accurate naming)Gravatar bunnei2014-05-209-26/+28