aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.cpp
Commit message (Collapse)AuthorAge
* Convert old logging calls to new logging macrosGravatar Yuri Kunde Schlesner2014-12-13
|
* HLE: Revamp error handling throrough the HLE codeGravatar Yuri Kunde Schlesner2014-11-24
| | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Add more services and some fixes, along with more "override"Gravatar purpasmart962014-11-20
| | | | in the service's headers
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Gravatar Emmanuel Gil Peyrot2014-11-19
| | | | or generated
* Add missing boss:U service, needed according to Nintendo Zone logs.Gravatar archshift2014-11-17
|
* Add FRD:U service and functionsGravatar archshift2014-11-10
|
* Added stub err:f service.Gravatar archshift2014-11-01
|
* Added a bunch of servicesGravatar purpasmart962014-11-01
|
* Renamed souce files of services to match port namesGravatar Gareth Poole2014-10-29
|
* core: Prune redundant includesGravatar archshift2014-09-08
|
* core: Pass string by reference in FetchFromPortName and DeleteServiceGravatar Lioncash2014-09-06
|
* FS: Added stubbed code to intercept and decode file system service functions.Gravatar bunnei2014-06-27
| | | | FS: Added to CMakeLists.txt
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)Gravatar bunnei2014-06-13
|
* service: removed PT_A from, as this was just an alias for APT_UGravatar bunnei2014-05-30
|
* hle: cleaned up log messagesGravatar bunnei2014-05-29
|
* - created a Kernel namespaceGravatar bunnei2014-05-20
| | | | | - cleaned up Kernel code a bit (moved stuff into namespace, fixed whitespace issues) - added handle types for all different CTROS handles
* - updated service(s) to be KernelObject'sGravatar bunnei2014-05-18
| | | | - various cleanups
* renamed "UID" to "Handle" where appropriateGravatar bunnei2014-05-18
|
* added class stub for HID:User serviceGravatar bunnei2014-04-16
|
* - added stubbed out GSP::Gpu service interfaceGravatar bunnei2014-04-16
| | | | - various cleanups/refactors to HLE services
* fixed naming for APT_UGravatar bunnei2014-04-15
|
* - extracted srv: calls from service.cpp and put in its own moduleGravatar bunnei2014-04-15
| | | | | - added function tables for service calls - lots of refactoring
* added a stub for GetLockHandleGravatar bunnei2014-04-13
|
* added framework for APT service (application and title launching service)Gravatar bunnei2014-04-13
|
* renamed class Interface_SRV to SRVGravatar bunnei2014-04-13
|
* added some very initial command parsing for SRV SyncGravatar bunnei2014-04-13
|
* cleanups to service HLEGravatar bunnei2014-04-12
|
* - added HLE to connect to "srv:" serviceGravatar bunnei2014-04-12
- added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function