summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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
2014-05-29hle: cleaned up log messagesbunnei
2014-05-29svc: updated OutputDebugString to use OS_LOGbunnei
2014-05-29arm: removed unnecessary code when calling SVC from skyeyebunnei
2014-05-29log: fixed to not print twice, enabled coloring, added OS print logging as ↵bunnei
its own type
2014-05-29core: changed time delay before kernel reschedule to "approximate" a screen ↵bunnei
refresh
2014-05-29svc: changed unimplemented SVC log messages from "debug" messages to "error" ↵bunnei
messages
2014-05-29svc: added svcClearEvent, stubbed function for svcArbitrateAddress, and ↵bunnei
various fixes - force kernel reschedule after svcWaitSynchronization - fixed some bugs with passing in pointer arguments - cleaned up some comments and log messages
2014-05-29event: added support for ClearEvent, fixed a bug with CreateEvent, fixed ↵bunnei
some comments
2014-05-29service: added additional hack to return success on unimplemented service callsbunnei
2014-05-29srv: changed a NOTICE_LOG to DEBUG_LOGbunnei
2014-05-29svc: added ArbitrationType enumerationbunnei
2014-05-28apt: added stubbed function for InquireNotificationbunnei
2014-05-28hle: properly cast 64-bit function wrapper parameters to (u64)bunnei
2014-05-28hle: removed PARAM64 macro (this was incorrect), made several bug fixes ↵bunnei
accordingly for decoding U64 function parameters
2014-05-28lcd: moved kFrameTicks to lcd.h for use in other modulesbunnei
2014-05-28service: changed interface to return 0 (no error) when a service method is ↵bunnei
unimplemented - hack to make apps boot further
2014-05-27APT_U: added stubbed function for APT_U::Enable, fixed some log messages to ↵bunnei
be more consistent