summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-06-01Added 'this' reference to num_instructions field so it's properly updated,as ↵Disruption
before the method was affecting the local method parameter rather than the class field
2014-05-22service: fixed typo that MSVC did not catch as an errorbunnei
2014-05-22core: fixed headers in CMakeListsbunnei
2014-05-22Merge branch 'threading'bunnei
2014-05-22Merge branch 'master' of https://github.com/bunnei/citrabunnei
2014-05-22core: added Kernel::Reschedule() call to check for thread changes, shortened ↵bunnei
delay time to 100 instructions
2014-05-22svc: added a check to ensure that a service was implemented before ↵bunnei
attempting to connect to its port
2014-05-22lcd: added thread wait after (faked) vblank interrupt (would have) occurredbunnei
2014-05-22thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused ↵bunnei
"reason" argument
2014-05-22thread: removed unused SwitchContext/Reschedule reason field, added missing ↵bunnei
arg parameter to SVC CreateThread
2014-05-22kernel: refactored function naming to remove "__" prefixbunnei
2014-05-22core: moved armcopro.cpp to correct filter folder (arm/interpreter)bunnei
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-19Merge pull request #2 from archshift/issue-7-fixbunnei
Fixes issues with building Citra on OSX
2014-05-19common_types: Changed BasicRect back to Rect, in the common namespacearchshift
Only Rect is in the namespace for now; the rest of common should be added in the future
2014-05-19Improved clarity and whitespacearchshift
Changed QGL version to 3,2 in order to be less restrictive, yet it should still change up to 4,1 on OSX on Qt5.
2014-05-19CMakeLists: rename HEADS, improved commentsarchshift
Changes for clarity of comments, removed redundant compiler flags.
2014-05-19Indent fixesarchshift
2014-05-18Merge pull request #13 from archshift/masterbunnei
Use runtime arguments to specify boot filename.
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