summaryrefslogtreecommitdiff
path: root/src (follow)
Commit message (Expand)AuthorAgeFilesLines
* SVC: Moved declaration of "wait" variable in SendSyncRequest for improved rea...Gravatar bunnei2014-06-131-1/+1
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-1313-239/+239
* Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-134-6/+6
* HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-134-10/+10
* Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-131-2/+1
* Kernel: Updated several member functions to be constGravatar bunnei2014-06-135-13/+13
* Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ins...Gravatar bunnei2014-06-132-12/+14
* Core: Changed HW update/thread reschedule to occur more frequently (assume ea...Gravatar bunnei2014-06-131-2/+2
* Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...Gravatar bunnei2014-06-131-1/+1
* Kernel: Made SyncRequest not pure virtual, with a default implementation of e...Gravatar bunnei2014-06-133-23/+4
* Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-136-76/+196
* qt: updated disassembler to show 2X as many instructionsGravatar bunnei2014-06-051-1/+1
* hle: added a hokey way to force a thread reschedule during CPU single step mo...Gravatar bunnei2014-06-053-1/+7
* arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually exec...Gravatar bunnei2014-06-051-1/+1
* kernel: changed current default thread priority back to 0x30 - I think this i...Gravatar bunnei2014-06-051-1/+1
* arm: fixed bug in how thread context switch occurs with SkyEyeGravatar bunnei2014-06-052-2/+9
* service: added a error log messages for unimplemented WaitSynchronizationGravatar bunnei2014-06-041-0/+1
* arm: reverting a change made with cb0663de - this has to have been a typo!Gravatar bunnei2014-06-041-1/+1
* svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-026-12/+25
* kernel: moved position of * for GetTypeName and GetNameGravatar bunnei2014-06-021-2/+2
* coprocessor: reenabled debug logGravatar bunnei2014-06-021-1/+1
* svc: updated WaitSynchronizationN to properly use first pointer argumentGravatar bunnei2014-06-022-4/+6
* svc: changed DuplicateHandle log message from "error" to "debug"Gravatar bunnei2014-06-011-1/+1
* svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic...Gravatar bunnei2014-06-013-3/+77
* kernel: changed main thread priority to default, updated Kernel::Reschedule t...Gravatar bunnei2014-06-016-9/+17
* arm: added option to prepare CPU core (while mid-instruction) for thread resc...Gravatar bunnei2014-06-013-0/+11
* svc: cleaned up function_wrappers, updated various SVCs to make use of pointe...Gravatar bunnei2014-06-012-31/+40
* log: updated MAX_LOGLEVEL to use correct log level enum typeGravatar bunnei2014-06-013-5/+5
* log: updated GenericLog __attribute__ for newly added parameterGravatar bunnei2014-06-011-1/+1
* svc: added missing function wrapper for SleepThreadGravatar bunnei2014-06-011-0/+4
* gsp: always pass through synchronization barrier for commandsGravatar bunnei2014-06-011-1/+16
* svc: updated waitSychronization to not overwrite handle on return, added stub...Gravatar bunnei2014-06-011-2/+21
* thread: updated Reschedule to sit at a synchronization barrier when no other ...Gravatar bunnei2014-06-011-0/+18
* event: added a hackish ability to set an event as "locked" to its current sta...Gravatar bunnei2014-06-012-4/+32
* hle: added stubbed service for ndm_uGravatar bunnei2014-05-305-0/+74
* service: cleaned up log messagesGravatar bunnei2014-05-301-2/+2
* service: removed PT_A from, as this was just an alias for APT_UGravatar bunnei2014-05-301-2/+0
* srv: fix to log unimplemented service (instead of crash)Gravatar bunnei2014-05-291-6/+2
* mutex: fixed typo in ReleaseMutexGravatar bunnei2014-05-291-1/+3
* hle: cleaned up log messagesGravatar bunnei2014-05-298-45/+49
* svc: updated OutputDebugString to use OS_LOGGravatar bunnei2014-05-291-1/+1
* arm: removed unnecessary code when calling SVC from skyeyeGravatar bunnei2014-05-291-16/+0
* log: fixed to not print twice, enabled coloring, added OS print logging as it...Gravatar bunnei2014-05-294-37/+42
* core: changed time delay before kernel reschedule to "approximate" a screen r...Gravatar bunnei2014-05-291-3/+12
* svc: changed unimplemented SVC log messages from "debug" messages to "error" ...Gravatar bunnei2014-05-291-8/+8
* svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and vario...Gravatar bunnei2014-05-292-22/+38
* event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some...Gravatar bunnei2014-05-292-9/+14
* service: added additional hack to return success on unimplemented service callsGravatar bunnei2014-05-291-2/+10
* srv: changed a NOTICE_LOG to DEBUG_LOGGravatar bunnei2014-05-291-1/+1
* svc: added ArbitrationType enumerationGravatar bunnei2014-05-291-0/+9