Commit graph

  • 2482be13df service: removed PT_A from, as this was just an alias for APT_U bunnei 2014-05-30 00:22:25 -0400
  • 007b7edada srv: fix to log unimplemented service (instead of crash) bunnei 2014-05-29 23:54:09 -0400
  • d8a2c8c657 mutex: fixed typo in ReleaseMutex bunnei 2014-05-29 23:31:01 -0400
  • c404d22036 hle: cleaned up log messages bunnei 2014-05-29 23:26:58 -0400
  • b0bad47c0e svc: updated OutputDebugString to use OS_LOG bunnei 2014-05-29 23:04:18 -0400
  • 55a540eb02 arm: removed unnecessary code when calling SVC from skyeye bunnei 2014-05-29 23:03:47 -0400
  • 6fc62f8c93 log: fixed to not print twice, enabled coloring, added OS print logging as its own type bunnei 2014-05-29 23:03:03 -0400
  • 9839f3b6cd core: changed time delay before kernel reschedule to "approximate" a screen refresh bunnei 2014-05-29 20:30:17 -0400
  • 6d267142ad svc: changed unimplemented SVC log messages from "debug" messages to "error" messages bunnei 2014-05-29 20:26:27 -0400
  • 58af0da792 svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and various fixes bunnei 2014-05-29 20:24:51 -0400
  • d51c84dde2 event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some comments bunnei 2014-05-29 20:00:44 -0400
  • 545e6919ce service: added additional hack to return success on unimplemented service calls bunnei 2014-05-29 18:54:59 -0400
  • b08b3c154f srv: changed a NOTICE_LOG to DEBUG_LOG bunnei 2014-05-29 18:53:45 -0400
  • e7202e5b2d svc: added ArbitrationType enumeration bunnei 2014-05-29 18:52:57 -0400
  • 4b4a6de1d8 apt: added stubbed function for InquireNotification bunnei 2014-05-28 23:33:24 -0400
  • c4b5168b45 hle: properly cast 64-bit function wrapper parameters to (u64) bunnei 2014-05-28 22:03:10 -0400
  • 9fd5d6c7d8 hle: removed PARAM64 macro (this was incorrect), made several bug fixes accordingly for decoding U64 function parameters bunnei 2014-05-28 21:20:00 -0400
  • 46aef01d04 lcd: moved kFrameTicks to lcd.h for use in other modules bunnei 2014-05-28 21:19:13 -0400
  • 70af9d620b service: changed interface to return 0 (no error) when a service method is unimplemented - hack to make apps boot further bunnei 2014-05-28 18:39:28 -0400
  • 3972d4ca8b APT_U: added stubbed function for APT_U::Enable, fixed some log messages to be more consistent bunnei 2014-05-27 23:56:08 -0400
  • 2ed6652f10 mutex: added preliminary SyncRequest/WaitSynchronization, added some comments/assertions bunnei 2014-05-27 22:42:16 -0400
  • 47e781e80a svc: implemented WaitSynchronization1, WaitSynchronizationN, and CreateEvent bunnei 2014-05-27 22:41:09 -0400
  • 94b30e8a38 APT_U: added event creation to Initialize method bunnei 2014-05-27 22:29:11 -0400
  • ea8627d536 event: fixed typos and updated CMakeLists bunnei 2014-05-27 22:14:38 -0400
  • beea6f054a event: added SetEventLocked method to change status an events lock bunnei 2014-05-27 22:14:00 -0400
  • fd69fd0325 kernel: added event module to support creation of CTR "Event" objects bunnei 2014-05-27 20:16:13 -0400
  • d493d725ac mutex: removed docstring comment that is no longer relevant bunnei 2014-05-26 22:49:11 -0400
  • 93cd5a0691 mutex: added additional docstrings bunnei 2014-05-26 22:47:47 -0400
  • a432dc8f39 kernel: added WaitSynchronization method to Kernel::Object bunnei 2014-05-26 22:17:49 -0400
  • 58a3adcdd2 kernel: updated SyncRequest to take boolean thread wait result as a parameter bunnei 2014-05-26 22:12:46 -0400
  • 6e51c56fe4 svc: added some assertions bunnei 2014-05-26 21:57:10 -0400
  • 16fea415d0 service: Renamed Sync to SyncRequest bunnei 2014-05-26 21:56:51 -0400
  • 3d7693f75f kernel: added enum for known CurrentThread and CurrentProcess handles bunnei 2014-05-26 21:56:23 -0400
  • 96b2105524 srv: added a real mutex for GetProcSemaphore (instead of stubbed) bunnei 2014-05-26 21:55:55 -0400
  • 9f7ed2d027 svc: changed SendSyncRequest to use Kernel::Object SyncRequest (instead of just service Interface class) bunnei 2014-05-26 21:17:10 -0400
  • d73d782ba7 kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequest bunnei 2014-05-26 21:01:27 -0400
  • 15d2ab1b33 svc: added stub for DuplicateHandle SVC call bunnei 2014-05-26 20:55:48 -0400
  • 6448c2f300 Merge pull request #9 from bunnei/master bunnei 2014-05-26 20:52:00 -0400
  • 0aa582bf89 service: fixed typo that MSVC did not catch as an error bunnei 2014-05-22 23:48:37 -0400
  • 420971a849 core: fixed headers in CMakeLists bunnei 2014-05-22 23:39:25 -0400
  • 32c314c992 Merge branch 'threading' bunnei 2014-05-22 22:57:45 -0400
  • 9a2e7381e6 Merge branch 'master' of https://github.com/citra-emu/citra bunnei 2014-05-22 22:56:25 -0400
  • 1de7e8cbe4 Merge branch 'master' of https://github.com/bunnei/citra bunnei 2014-05-22 22:54:56 -0400
  • 51f636b3d4 core: added Kernel::Reschedule() call to check for thread changes, shortened delay time to 100 instructions bunnei 2014-05-22 22:54:07 -0400
  • f8a98ab022 svc: added a check to ensure that a service was implemented before attempting to connect to its port bunnei 2014-05-22 22:49:29 -0400
  • 7bb66421a0 lcd: added thread wait after (faked) vblank interrupt (would have) occurred bunnei 2014-05-22 20:01:04 -0400
  • b99ac2c3d6 thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused "reason" argument bunnei 2014-05-22 19:36:56 -0400
  • 7c0b006076 thread: removed unused SwitchContext/Reschedule reason field, added missing arg parameter to SVC CreateThread bunnei 2014-05-22 19:32:45 -0400
  • d26f3d4c1f kernel: refactored function naming to remove "__" prefix bunnei 2014-05-22 19:06:12 -0400
  • ac21e8f2db core: moved armcopro.cpp to correct filter folder (arm/interpreter) bunnei 2014-05-22 18:51:55 -0400
  • 14bd37c5dc thread: moved ThreadStatus/WaitType to header, added support for arg on CreateThread, added correct CPSR reset bunnei 2014-05-22 18:50:36 -0400
  • 9fddba6843 APT_U: added a debug log on calling GetLockHandle bunnei 2014-05-22 18:48:14 -0400
  • 481d936d34 arm_interpreter: fixed load context to currently resume a thread bunnei 2014-05-22 18:47:42 -0400
  • 6a78be5930 thread: fixed bug where result of __NextThread was not being properly checked when NULL bunnei 2014-05-21 21:42:18 -0400
  • 06e3c3d55a svc: added Kernel::Reschedule to svc WaitSynchronization1, updated log messages to include newly created handles bunnei 2014-05-21 21:41:40 -0400
  • 706584f007 svc: enabled use of newly created kernel thread handle bunnei 2014-05-20 23:36:35 -0400
  • eb537c560a mutex: refactored the interface to code to return a Mutex* handle bunnei 2014-05-20 23:23:58 -0400
  • 978e1d4653 mutex: initial commit of HLE module bunnei 2014-05-20 23:03:45 -0400
  • 08e6a9bf89 svc: added some comments bunnei 2014-05-20 22:57:54 -0400
  • 1c5802c35a kernel: fixed include, in general include "common.h" not "common_types.h" bunnei 2014-05-20 22:27:46 -0400
  • 9bf7ce535a service: removed redundant include of common_types.h bunnei 2014-05-20 22:27:12 -0400
  • a721a4eb33 arm: removed include of windows.h from armdefs.h to arminit.c (only module that uses it) bunnei 2014-05-20 22:26:40 -0400
  • 22eb9a8981 armemu: missed rename of "Syscall" to "SVC" bunnei 2014-05-20 22:25:40 -0400
  • 203541da11 thread: added correct lowest thread priority, added a thread priority check, and added some comments bunnei 2014-05-20 21:02:35 -0400
  • bed4e920fa thread: exposed ResumeThreadFromWait function for use in other kernel modules bunnei 2014-05-20 21:00:10 -0400
  • 75c6d2a8fa thread: moved threading calls to the Kernel namespace bunnei 2014-05-20 19:37:46 -0400
  • 0012802456 ARM_Interpreter/ARM_Interface: Fixed member variable naming to be consistent with style guide bunnei 2014-05-20 18:52:54 -0400
  • 49dc2ce8ac ARM_Interface: added SaveContext and LoadContext functions for HLE thread switching bunnei 2014-05-20 18:50:16 -0400
  • 143bba2045 renamed "syscall" module to "svc" (more accurate naming) bunnei 2014-05-20 18:28:38 -0400
  • f654a03f1f thread: whitespace change - fixed * and & placement bunnei 2014-05-20 18:20:35 -0400
  • 44336329ed - created a Kernel namespace bunnei 2014-05-20 18:13:25 -0400
  • 8bfd32e854 * Remove -fpermissive Phillip Stephens 2014-05-19 20:48:14 -0700
  • 74f9726515 Merge pull request #4 from archshift/patch-1 bunnei 2014-05-19 23:44:52 -0400
  • 6655a4751e README: Update wiki links archshift 2014-05-19 20:17:08 -0700
  • 0886dc70ed apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a magic value in other places) so that I can track how it propagates through the app code bunnei 2014-05-19 22:21:17 -0400
  • f5a119a367 thread: added declaration for __KernelReschedule to be used by syscall module bunnei 2014-05-19 22:19:48 -0400
  • 29930ac110 VFP: disable DBG messages because they spam the console with unimportant skyeye junk bunnei 2014-05-19 22:19:10 -0400
  • 204c6bfeca Merge pull request #2 from archshift/issue-7-fix bunnei 2014-05-19 21:46:57 -0400
  • 5a8ed196e6 common_types: Changed BasicRect back to Rect, in the common namespace archshift 2014-05-19 17:57:35 -0700
  • 9216c96f48 CMakeLists: Fixed GLEW include var name, compile flag vars archshift 2014-05-19 16:33:23 -0700
  • 034e3aabc8 Improved clarity and whitespace archshift 2014-05-19 15:21:55 -0700
  • 403e4bf837 CMakeLists: rename HEADS, improved comments archshift 2014-05-19 15:19:36 -0700
  • 71b8789803 Indent fixes archshift 2014-05-19 13:51:59 -0700
  • 9592d61037 Merge pull request #13 from archshift/master bunnei 2014-05-18 22:39:40 -0400
  • 088a2de9a6 renamed "session" to "handle" bunnei 2014-05-18 22:24:26 -0400
  • 112904b832 - renamed NewHandle to CreateHandle bunnei 2014-05-18 22:09:08 -0400
  • 16d55842c5 fix warning bunnei 2014-05-18 21:43:41 -0400
  • eab6fd01d7 - updated service(s) to be KernelObject's bunnei 2014-05-18 21:43:29 -0400
  • b5d2ff9b26 updated Travis-CI image/link in readme for new project repo bunnei 2014-05-18 21:14:37 -0400
  • 725d240bf7 renamed "UID" to "Handle" where appropriate bunnei 2014-05-18 18:24:24 -0400
  • 772abad778 - moved Handle/Result definitions to kernel.h bunnei 2014-05-18 18:12:29 -0400
  • 8fba88d5d5 - added stub for CreateEvent bunnei 2014-05-18 17:52:02 -0400
  • 6a6c7eeccb added stubbed function for WaitSynchronizationN bunnei 2014-05-17 23:37:25 -0400
  • 603ef89dad Indent fixes archshift 2014-05-17 12:54:38 -0700
  • c396a5ac57 Fixed vfp issues archshift 2014-05-17 10:55:45 -0700
  • fbc04ad0c7 ignore thumbemu 0xDEADCODE debugging catch on MCR bunnei 2014-05-17 13:48:27 -0400
  • 09b8e8fb6a changed a comment bunnei 2014-05-17 13:47:55 -0400
  • cfea5fdd58 cleanups to SVC CreateThread bunnei 2014-05-17 13:47:44 -0400
  • 3fac6dc39e Merge branch 'master' into threading bunnei 2014-05-17 13:35:20 -0400
  • 265c770a9d updated how we call ARM core to make things much faster bunnei 2014-05-17 11:59:18 -0400