summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2014-06-13Kernel: Removed unnecessary "#pragma once".bunnei
2014-06-13Kernel: Added freeing of kernel objects on emulator shutdown.bunnei
2014-06-13Event: Updated several log messages to be assertions.bunnei
2014-06-13HLE: Moved "PARAM" and "RETURN" macros to function_wrappers.h (this is only ↵bunnei
module where they are needed).
2014-06-13SVC: Renamed all function wrapper templates to Wrap, moved to HLE namespace.bunnei
2014-06-13Thread: Renamed occurrences of "t" to "thread" to improve readability.bunnei
2014-06-13Thread: Cleaned up VerifyWait, fixed issue where nullptr msg could ↵bunnei
unnecessarily be logged.
2014-06-13HLE: Removed usnused EatCycles function.bunnei
2014-06-13SVC: Cleaned up function wrappers to pass in correct argument types.bunnei
2014-06-13Thread: Moved position of * in arguments.bunnei
2014-06-13Thread: Updated VerifyWait to be more readable (but functionally the same).bunnei
2014-06-13SVC: Moved declaration of "wait" variable in SendSyncRequest for improved ↵bunnei
readability.
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei
2014-06-13Kernel: Updated various kernel function "name" arguments to be const references.bunnei
2014-06-13HLE: Updated various handle debug assertions to be more clear.bunnei
2014-06-13Mutex: Moved ReleaseMutex iterator declaration to be inside while loop.bunnei
2014-06-13Kernel: Updated several member functions to be constbunnei
2014-06-13Core: Cleaned up SingleStep(), updated default LCD refresh to assume each ↵bunnei
instruction is ~3 cycles
2014-06-13Core: Changed HW update/thread reschedule to occur more frequently (assume ↵bunnei
each instruction is ~3 cycles)
2014-06-13Thread: Fixed bug with ResetThread where cpu_registers[15] was being ↵bunnei
incorrectly set
2014-06-13Kernel: Made SyncRequest not pure virtual, with a default implementation of ↵bunnei
error (as this is not required for all kernel objects)
2014-06-13Kernel: Added real support for thread and event blockingbunnei
- SVC: Added ExitThread support - SVC: Added SignalEvent support - Thread: Added WAITTYPE_EVENT for waiting threads for event signals - Thread: Added support for blocking on other threads to finish (e.g. Thread::Join) - Thread: Added debug function for printing current threads ready for execution - Thread: Removed hack/broken thread ready state code from Kernel::Reschedule - Mutex: Moved WaitCurrentThread from SVC to Mutex::WaitSynchronization - Event: Added support for blocking threads on event signalling Kernel: Added missing algorithm #include for use of std::find on non-Windows platforms.
2014-06-05qt: updated disassembler to show 2X as many instructionsbunnei
2014-06-05hle: added a hokey way to force a thread reschedule during CPU single step ↵bunnei
mode (as used by the debugger)
2014-06-05arm: fixed a bug where ARM_Interpreter::ExecuteInstructions was actually ↵bunnei
executing one more instruction than expected
2014-06-05kernel: changed current default thread priority back to 0x30 - I think this ↵bunnei
is more correct
2014-06-05arm: fixed bug in how thread context switch occurs with SkyEyebunnei
2014-06-04service: added a error log messages for unimplemented WaitSynchronizationbunnei
2014-06-04arm: reverting a change made with cb0663de - this has to have been a typo!bunnei
2014-06-02svc: added optional name field to Event and Mutex (used for debugging)bunnei
2014-06-02kernel: moved position of * for GetTypeName and GetNamebunnei
2014-06-02coprocessor: reenabled debug logbunnei
2014-06-02svc: updated WaitSynchronizationN to properly use first pointer argumentbunnei
2014-06-01svc: changed DuplicateHandle log message from "error" to "debug"bunnei
2014-06-01svc: added GetThreadPriority and SetThreadPriority, added (incomplete) ↵bunnei
DuplicateHandle support
2014-06-01kernel: changed main thread priority to default, updated Kernel::Reschedule ↵bunnei
to use PrepareReschedule
2014-06-01arm: added option to prepare CPU core (while mid-instruction) for thread ↵bunnei
reschedule
2014-06-01svc: cleaned up function_wrappers, updated various SVCs to make use of ↵bunnei
pointer arguments
2014-06-01log: updated MAX_LOGLEVEL to use correct log level enum typebunnei
2014-06-01log: updated GenericLog __attribute__ for newly added parameterbunnei
2014-06-01svc: added missing function wrapper for SleepThreadbunnei
2014-06-01gsp: always pass through synchronization barrier for commandsbunnei
2014-06-01svc: updated waitSychronization to not overwrite handle on return, added ↵bunnei
stub for SleepThread (does nothing)
2014-06-01thread: updated Reschedule to sit at a synchronization barrier when no other ↵bunnei
threads are ready for execution
2014-06-01event: added a hackish ability to set an event as "locked" to its current ↵bunnei
state, cleaned up some comments
2014-05-30hle: added stubbed service for ndm_ubunnei
2014-05-30service: cleaned up log messagesbunnei
2014-05-30service: removed PT_A from, as this was just an alias for APT_Ubunnei
2014-05-29srv: fix to log unimplemented service (instead of crash)bunnei
2014-05-29mutex: fixed typo in ReleaseMutexbunnei