| Commit message (Expand) | Author | Age | Files | Lines |
| ... | |
| | * | HLE: Removed usnused EatCycles function. | bunnei | 2014-06-13 | 3 | -15/+0 |
| | * | SVC: Cleaned up function wrappers to pass in correct argument types. | bunnei | 2014-06-13 | 2 | -870/+201 |
| | * | Thread: Moved position of * in arguments. | bunnei | 2014-06-13 | 1 | -2/+2 |
| | * | Thread: Updated VerifyWait to be more readable (but functionally the same). | bunnei | 2014-06-13 | 1 | -4/+3 |
| | * | SVC: Moved declaration of "wait" variable in SendSyncRequest for improved rea... | bunnei | 2014-06-13 | 1 | -1/+1 |
| | * | HLE: Updated all uses of NULL to nullptr (to be C++11 compliant) | bunnei | 2014-06-13 | 12 | -235/+235 |
| | * | Kernel: Updated various kernel function "name" arguments to be const references. | bunnei | 2014-06-13 | 4 | -6/+6 |
| | * | HLE: Updated various handle debug assertions to be more clear. | bunnei | 2014-06-13 | 4 | -10/+10 |
| | * | Mutex: Moved ReleaseMutex iterator declaration to be inside while loop. | bunnei | 2014-06-13 | 1 | -2/+1 |
| | * | Kernel: Updated several member functions to be const | bunnei | 2014-06-13 | 5 | -13/+13 |
| | * | Thread: Fixed bug with ResetThread where cpu_registers[15] was being incorrec... | bunnei | 2014-06-13 | 1 | -1/+1 |
| | * | Kernel: Made SyncRequest not pure virtual, with a default implementation of e... | bunnei | 2014-06-13 | 3 | -23/+4 |
| | * | Kernel: Added real support for thread and event blocking | bunnei | 2014-06-13 | 6 | -76/+196 |
| | * | hle: added a hokey way to force a thread reschedule during CPU single step mo... | bunnei | 2014-06-05 | 2 | -0/+5 |
| | * | kernel: changed current default thread priority back to 0x30 - I think this i... | bunnei | 2014-06-05 | 1 | -1/+1 |
| | * | arm: fixed bug in how thread context switch occurs with SkyEye | bunnei | 2014-06-05 | 1 | -0/+4 |
| | * | service: added a error log messages for unimplemented WaitSynchronization | bunnei | 2014-06-04 | 1 | -0/+1 |
| | * | svc: added optional name field to Event and Mutex (used for debugging) | bunnei | 2014-06-02 | 6 | -12/+25 |
| | * | kernel: moved position of * for GetTypeName and GetName | bunnei | 2014-06-02 | 1 | -2/+2 |
| | * | coprocessor: reenabled debug log | bunnei | 2014-06-02 | 1 | -1/+1 |
| | * | svc: updated WaitSynchronizationN to properly use first pointer argument | bunnei | 2014-06-02 | 2 | -4/+6 |
| | * | svc: changed DuplicateHandle log message from "error" to "debug" | bunnei | 2014-06-01 | 1 | -1/+1 |
| | * | svc: added GetThreadPriority and SetThreadPriority, added (incomplete) Duplic... | bunnei | 2014-06-01 | 3 | -3/+77 |
| | * | kernel: changed main thread priority to default, updated Kernel::Reschedule t... | bunnei | 2014-06-01 | 6 | -9/+17 |
| | * | svc: cleaned up function_wrappers, updated various SVCs to make use of pointe... | bunnei | 2014-06-01 | 2 | -31/+40 |
| | * | svc: added missing function wrapper for SleepThread | bunnei | 2014-06-01 | 1 | -0/+4 |
| | * | gsp: always pass through synchronization barrier for commands | bunnei | 2014-06-01 | 1 | -1/+16 |
| | * | svc: updated waitSychronization to not overwrite handle on return, added stub... | bunnei | 2014-06-01 | 1 | -2/+21 |
| | * | thread: updated Reschedule to sit at a synchronization barrier when no other ... | bunnei | 2014-06-01 | 1 | -0/+18 |
| | * | event: added a hackish ability to set an event as "locked" to its current sta... | bunnei | 2014-06-01 | 2 | -4/+32 |
| | * | hle: added stubbed service for ndm_u | bunnei | 2014-05-30 | 2 | -0/+65 |
| | * | service: cleaned up log messages | bunnei | 2014-05-30 | 1 | -2/+2 |
| | * | service: removed PT_A from, as this was just an alias for APT_U | bunnei | 2014-05-30 | 1 | -2/+0 |
| | * | srv: fix to log unimplemented service (instead of crash) | bunnei | 2014-05-29 | 1 | -6/+2 |
| | * | mutex: fixed typo in ReleaseMutex | bunnei | 2014-05-29 | 1 | -1/+3 |
| | * | hle: cleaned up log messages | bunnei | 2014-05-29 | 7 | -42/+47 |
| | * | svc: updated OutputDebugString to use OS_LOG | bunnei | 2014-05-29 | 1 | -1/+1 |
| | * | svc: changed unimplemented SVC log messages from "debug" messages to "error" ... | bunnei | 2014-05-29 | 1 | -8/+8 |
| | * | svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and vario... | bunnei | 2014-05-29 | 2 | -22/+38 |
| | * | event: added support for ClearEvent, fixed a bug with CreateEvent, fixed some... | bunnei | 2014-05-29 | 2 | -9/+14 |
| | * | service: added additional hack to return success on unimplemented service calls | bunnei | 2014-05-29 | 1 | -2/+10 |
| | * | srv: changed a NOTICE_LOG to DEBUG_LOG | bunnei | 2014-05-29 | 1 | -1/+1 |
| | * | svc: added ArbitrationType enumeration | bunnei | 2014-05-29 | 1 | -0/+9 |
| | * | apt: added stubbed function for InquireNotification | bunnei | 2014-05-28 | 1 | -78/+86 |
| | * | hle: properly cast 64-bit function wrapper parameters to (u64) | bunnei | 2014-05-28 | 1 | -2/+2 |
| | * | hle: removed PARAM64 macro (this was incorrect), made several bug fixes accor... | bunnei | 2014-05-28 | 2 | -3/+2 |
| | * | service: changed interface to return 0 (no error) when a service method is u... | bunnei | 2014-05-28 | 1 | -2/+2 |
| | * | APT_U: added stubbed function for APT_U::Enable, fixed some log messages to b... | bunnei | 2014-05-27 | 1 | -3/+10 |
| | * | mutex: added preliminary SyncRequest/WaitSynchronization, added some comments... | bunnei | 2014-05-27 | 1 | -0/+6 |
| | * | svc: implemented WaitSynchronization1, WaitSynchronizationN, and CreateEvent | bunnei | 2014-05-27 | 1 | -14/+54 |