aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.cpp
AgeCommit message (Collapse)Author
2014-12-07Mutex: Release all held mutexes when a thread exits.Subv
2014-12-04Threads: Remove a redundant function.Subv
Use the next_thread_id variable directly.
2014-12-04Threads: Implemented a sequential thread idSubv
2014-12-04SVC: Implemented GetThreadId.Subv
For now threads are using their Handle value as their Id, it should not really cause any problems because Handle values are unique in Citra, but it should be changed. I left a ToDo there because this is not correct behavior as per hardware.
2014-11-26Thread: Check that thread is actually in "wait state" when verifying wait.bunnei
2014-11-24Use pointers instead of passing handles around in some functions.Yuri Kunde Schlesner
2014-11-24Remove duplicated docs/update them for changed parameters.Yuri Kunde Schlesner
2014-11-24HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner
All service calls in the CTR OS return result codes indicating the success or failure of the call. Previous to this commit, Citra's HLE emulation of services and the kernel universally either ignored errors or returned dummy -1 error codes. This commit makes an initial effort to provide an infrastructure for error reporting and propagation which can be use going forward to make HLE calls accurately return errors as the original system. A few parts of the code have been updated to use the new system where applicable. One part of this effort is the definition of the `ResultCode` type, which provides facilities for constructing and parsing error codes in the structured format used by the CTR. The `ResultVal` type builds on `ResultCode` by providing a container for values returned by function that can report errors. It enforces that correct error checking will be done on function returns by preventing the use of the return value if the function returned an error code. Currently this change is mostly internal since errors are still suppressed on the ARM<->HLE border, as a temporary compatibility hack. As functionality is implemented and tested this hack can be eventually removed.
2014-11-19Merge pull request #211 from linkmauve/masterbunnei
Remove trailing spaces from the entire project
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Emmanuel Gil Peyrot
or generated
2014-11-18Add static to some variablesLioncash
2014-10-26Add `override` keyword through the code.Yuri Kunde Schlesner
This was automated using `clang-modernize`.
2014-09-08core: Prune redundant includesarchshift
2014-08-28Threading: Fix thread starting to execute first instruction correctly.bunnei
2014-08-17Core: Alter the kernel string functions to use std::string instead of const ↵Lioncash
char*. Most functions already operate on std::strings. This also removes the need to manually null terminate thread names.
2014-08-06Thread: Added more descriptive comment to WaitCurrentThread.bunnei
2014-07-08Thread: Added functions to resume threads from address arbitration.bunnei
Thread: Cleaned up arbitrate address functions. Thread: Cleaned up ArbitrateAllThreads function.
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-13HLE: Updated various handle debug assertions to be more clear.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-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-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: 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-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
2014-05-18- moved Handle/Result definitions to kernel.hbunnei
- added ResetType enum
2014-05-17changed a commentbunnei
2014-05-17- added enum ThreadProcessorIdbunnei
- reorganized some kernel thread functions - added placeholder __KernelWaitThread_Synchronization function
2014-05-16- replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTHbunnei
- added KERNEL_DEFAULT_STACK_SIZE definition (0x4000)