aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel
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-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-13Thread: Moved position of * in arguments.bunnei
2014-06-13Thread: Updated VerifyWait to be more readable (but functionally the same).bunnei
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-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-05kernel: changed current default thread priority back to 0x30 - I think this ↵bunnei
is more correct
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-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-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-29mutex: fixed typo in ReleaseMutexbunnei
2014-05-29event: added support for ClearEvent, fixed a bug with CreateEvent, fixed ↵bunnei
some comments
2014-05-27mutex: added preliminary SyncRequest/WaitSynchronization, added some ↵bunnei
comments/assertions
2014-05-27event: fixed typos and updated CMakeListsbunnei
2014-05-27event: added SetEventLocked method to change status an events lockbunnei
2014-05-27kernel: added event module to support creation of CTR "Event" objectsbunnei
2014-05-26mutex: removed docstring comment that is no longer relevantbunnei
2014-05-26mutex: added additional docstringsbunnei
2014-05-26kernel: added WaitSynchronization method to Kernel::Objectbunnei
2014-05-26kernel: updated SyncRequest to take boolean thread wait result as a parameterbunnei
2014-05-26kernel: added enum for known CurrentThread and CurrentProcess handlesbunnei
2014-05-26kernel: add a SyncRequest method to KernelObject for use with svcSendSyncRequestbunnei
2014-05-22thread: renamed "WaitCurThread" to "WaitCurrentThread", removed unused ↵bunnei
"reason" argument
2014-05-22thread: removed unused SwitchContext/Reschedule reason field, added missing ↵bunnei
arg parameter to SVC CreateThread
2014-05-22kernel: refactored function naming to remove "__" prefixbunnei
2014-05-22thread: moved ThreadStatus/WaitType to header, added support for arg on ↵bunnei
CreateThread, added correct CPSR reset
2014-05-21thread: fixed bug where result of __NextThread was not being properly ↵bunnei
checked when NULL
2014-05-20mutex: refactored the interface to code to return a Mutex* handlebunnei
2014-05-20mutex: initial commit of HLE modulebunnei
2014-05-20kernel: fixed include, in general include "common.h" not "common_types.h"bunnei
2014-05-20thread: added correct lowest thread priority, added a thread priority check, ↵bunnei
and added some comments
2014-05-20thread: exposed ResumeThreadFromWait function for use in other kernel modulesbunnei
2014-05-20thread: moved threading calls to the Kernel namespacebunnei
2014-05-20ARM_Interface: added SaveContext and LoadContext functions for HLE thread ↵bunnei
switching
2014-05-20renamed "syscall" module to "svc" (more accurate naming)bunnei
2014-05-20thread: whitespace change - fixed * and & placementbunnei
2014-05-20- created a Kernel namespacebunnei
- cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues) - added handle types for all different CTROS handles