aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle
Commit message (Expand)AuthorAge
* SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.Gravatar bunnei2014-06-13
* Thread: Renamed occurrences of "t" to "thread" to improve readability.Gravatar bunnei2014-06-13
* Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could unnecessar...Gravatar bunnei2014-06-13
* HLE: Removed usnused EatCycles function.Gravatar bunnei2014-06-13
* SVC: Cleaned up function wrappers to pass in correct argument types.Gravatar bunnei2014-06-13
* Thread: Moved position of * in arguments.Gravatar bunnei2014-06-13
* Thread: Updated VerifyWait to be more readable (but functionally the same).Gravatar bunnei2014-06-13
* SVC: Moved declaration of "wait" variable in SendSyncRequest for improved rea...Gravatar bunnei2014-06-13
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-13
* Kernel: Updated various kernel function "name" arguments to be const references.Gravatar bunnei2014-06-13
* HLE: Updated various handle debug assertions to be more clear.Gravatar bunnei2014-06-13
* Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.Gravatar bunnei2014-06-13
* Kernel: Updated several member functions to be constGravatar bunnei2014-06-13
* Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec...Gravatar bunnei2014-06-13
* Kernel: Made SyncRequest not pure virtual, with a default implementation of e...Gravatar bunnei2014-06-13
* Kernel: Added real support for thread and event blockingGravatar bunnei2014-06-13
* hle: added a hokey way to force a thread reschedule during CPU single step mo...Gravatar bunnei2014-06-05
* kernel: changed current default thread priority back to 0x30 - I think this i...Gravatar bunnei2014-06-05
* arm: fixed bug in how thread context switch occurs with SkyEyeGravatar bunnei2014-06-05
* service: added a error log messages for unimplemented WaitSynchronizationGravatar bunnei2014-06-04
* svc: added optional name field to Event and Mutex (used for debugging)Gravatar bunnei2014-06-02
* kernel: moved position of * for GetTypeName and GetNameGravatar bunnei2014-06-02
* coprocessor: reenabled debug logGravatar bunnei2014-06-02
* svc: updated WaitSynchronizationN to properly use first pointer argumentGravatar bunnei2014-06-02
* svc: changed DuplicateHandle log message from "error" to "debug"Gravatar bunnei2014-06-01
* svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic...Gravatar bunnei2014-06-01
* kernel: changed main thread priority to default, updated Kernel::Reschedule t...Gravatar bunnei2014-06-01
* svc: cleaned up function_wrappers, updated various SVCs to make use of pointe...Gravatar bunnei2014-06-01
* svc: added missing function wrapper for SleepThreadGravatar bunnei2014-06-01
* gsp: always pass through synchronization barrier for commandsGravatar bunnei2014-06-01
* svc: updated waitSychronization to not overwrite handle on return, added stub...Gravatar bunnei2014-06-01
* thread: updated Reschedule to sit at a synchronization barrier when no other ...Gravatar bunnei2014-06-01
* event: added a hackish ability to set an event as "locked" to its current sta...Gravatar bunnei2014-06-01
* hle: added stubbed service for ndm_uGravatar bunnei2014-05-30
* service: cleaned up log messagesGravatar bunnei2014-05-30
* service: removed PT_A from, as this was just an alias for APT_UGravatar bunnei2014-05-30
* srv: fix to log unimplemented service (instead of crash)Gravatar bunnei2014-05-29
* mutex: fixed typo in ReleaseMutexGravatar bunnei2014-05-29
* hle: cleaned up log messagesGravatar bunnei2014-05-29
* svc: updated OutputDebugString to use OS_LOGGravatar bunnei2014-05-29
* svc: changed unimplemented SVC log messages from "debug" messages to "error" ...Gravatar bunnei2014-05-29
* svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and vario...Gravatar bunnei2014-05-29
* event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some...Gravatar bunnei2014-05-29
* service: added additional hack to return success on unimplemented service callsGravatar bunnei2014-05-29
* srv: changed a NOTICE_LOG to DEBUG_LOGGravatar bunnei2014-05-29
* svc: added ArbitrationType enumerationGravatar bunnei2014-05-29
* apt: added stubbed function for InquireNotificationGravatar bunnei2014-05-28
* hle: properly cast 64-bit function wrapper parameters to (u64)Gravatar bunnei2014-05-28
* hle: removed PARAM64 macro (this was incorrect), made several bug fixes accor...Gravatar bunnei2014-05-28
* service: changed interface to return 0 (no error) when a service method is u...Gravatar bunnei2014-05-28