aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/kernel.h
AgeCommit message (Collapse)Author
2014-12-13kernel: Remove unused log argumentsLioncash
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner
2014-12-03kernel: Make some functions constLioncash
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-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Emmanuel Gil Peyrot
or generated
2014-11-18Remove extraneous semicolonsLioncash
2014-09-17Kernel: Add a Directory object and a getter for it from an Archive object.Emmanuel Gil Peyrot
2014-08-19Core: Use std::array for managing kernel object spaceLioncash
These avoid relying on memset for clearing the arrays.
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-07-08Kernel: Added preliminary support for address arbiters.bunnei
AddressArbiter: Added documentation comment, fixed whitespace issue. AddressArbiter: Fixed incorrect comment, reordered if-statement to be more clear. SVC: Removed trailing whitespace.
2014-06-27Kernel: Added stubbed code to support creation of kernel Archive objects.bunnei
2014-06-13Kernel: Added freeing of kernel objects on emulator shutdown.bunnei
2014-06-13Kernel: Updated several member functions to be constbunnei
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-02kernel: moved position of * for GetTypeName and GetNamebunnei
2014-06-01kernel: changed main thread priority to default, updated Kernel::Reschedule ↵bunnei
to use PrepareReschedule
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-22kernel: refactored function naming to remove "__" prefixbunnei
2014-05-20kernel: fixed include, in general include "common.h" not "common_types.h"bunnei
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- updated service(s) to be KernelObject'sbunnei
- various cleanups
2014-05-18- moved Handle/Result definitions to kernel.hbunnei
- added ResetType enum
2014-05-16- replaced KERNELOBJECT_MAX_NAME_LENGTH with KERNEL_MAX_NAME_LENGTHbunnei
- added KERNEL_DEFAULT_STACK_SIZE definition (0x4000)
2014-05-15changed "UID" to "Handle" to be a little more consistent with CTR namingbunnei
2014-05-13- added __KernelLoadExec functionbunnei
- fixed some logging
2014-05-09added initial kernel/thread modulesbunnei