summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-05-22thread: moved ThreadStatus/WaitType to header, added support for arg on ↵bunnei
CreateThread, added correct CPSR reset
2014-05-22APT_U: added a debug log on calling GetLockHandlebunnei
2014-05-22arm_interpreter: fixed load context to currently resume a threadbunnei
2014-05-21thread: fixed bug where result of __NextThread was not being properly ↵bunnei
checked when NULL
2014-05-21svc: added Kernel::Reschedule to svc WaitSynchronization1, updated log ↵bunnei
messages to include newly created handles
2014-05-20svc: enabled use of newly created kernel thread handlebunnei
2014-05-20mutex: refactored the interface to code to return a Mutex* handlebunnei
2014-05-20mutex: initial commit of HLE modulebunnei
2014-05-20svc: added some commentsbunnei
2014-05-20kernel: fixed include, in general include "common.h" not "common_types.h"bunnei
2014-05-20service: removed redundant include of common_types.hbunnei
2014-05-20arm: removed include of windows.h from armdefs.h to arminit.c (only module ↵bunnei
that uses it)
2014-05-20armemu: missed rename of "Syscall" to "SVC"bunnei
2014-05-20thread: added correct lowest thread priority, added a thread priority check, ↵bunnei
and added some comments
2014-05-20thread: exposed ResumeThreadFromWait function for use in other kernel modulesbunnei
2014-05-20thread: moved threading calls to the Kernel namespacebunnei
2014-05-20ARM_Interpreter/ARM_Interface: Fixed member variable naming to be consistent ↵bunnei
with style guide
2014-05-20ARM_Interface: added SaveContext and LoadContext functions for HLE thread ↵bunnei
switching
2014-05-20renamed "syscall" module to "svc" (more accurate naming)bunnei
2014-05-20thread: whitespace change - fixed * and & placementbunnei
2014-05-20- created a Kernel namespacebunnei
- cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues) - added handle types for all different CTROS handles
2014-05-19apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a ↵bunnei
magic value in other places) so that I can track how it propagates through the app code
2014-05-19thread: added declaration for __KernelReschedule to be used by syscall modulebunnei
2014-05-19VFP: disable DBG messages because they spam the console with unimportant ↵bunnei
skyeye junk
2014-05-18renamed "session" to "handle"bunnei
2014-05-18- renamed NewHandle to CreateHandlebunnei
- updated CreateHandle/DeleteHandle to use KernelObject's
2014-05-18fix warningbunnei
2014-05-18- updated service(s) to be KernelObject'sbunnei
- various cleanups
2014-05-18renamed "UID" to "Handle" where appropriatebunnei
2014-05-18- moved Handle/Result definitions to kernel.hbunnei
- added ResetType enum
2014-05-18- added stub for CreateEventbunnei
- changed some stubbed SVCs to return unique handle names for debugging purposes
2014-05-17added stubbed function for WaitSynchronizationNbunnei
2014-05-17ignore thumbemu 0xDEADCODE debugging catch on MCRbunnei
2014-05-17changed a commentbunnei
2014-05-17cleanups to SVC CreateThreadbunnei
2014-05-17Merge branch 'master' into threadingbunnei
2014-05-17updated how we call ARM core to make things much fasterbunnei
2014-05-17- added enum ThreadProcessorIdbunnei
- reorganized some kernel thread functions - added placeholder __KernelWaitThread_Synchronization function
2014-05-17added MIN, MAX, and CLAMP macros to common_funcsbunnei
2014-05-16- replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTHbunnei
- added KERNEL_DEFAULT_STACK_SIZE definition (0x4000)
2014-05-16added stubbed GetProcSemaphore - does nothing but avoids an exceptionbunnei
2014-05-16add kernel.* and thread.* to VS filtersbunnei
2014-05-16updated APT_U::GetLockHandle to return a valid handlebunnei
2014-05-16Merge master into threading to add support for VFPbunnei
2014-05-16Merge pull request #17 from bunnei/arm-vfpbunnei
ARM VFP support - integrated from SkyEye
2014-05-16same fix as last commit - just for vfpsingle.cppbunnei
2014-05-16another VFP fix for GCCbunnei
2014-05-16fixed VFP DBG log for GCCbunnei
2014-05-16fixed typo in CMakeLists.txtbunnei
2014-05-16- reenabled MCR and MRC functions now that VFP is attachedbunnei
- removed HLE::CallMCR function (was pointless)