summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Rename ObjectPool to HandleTableYuri Kunde Schlesner2014-12-281-2/+2
|
* More services & small clean upspurpasmart962014-12-261-2/+10
|
* CFG: Create a new subfolder cfg inside service to handle cfgSubv2014-12-211-2/+2
| | | | Moved most of the shared CFG code there, implemented a few CFG:I functions
* License changepurpasmart962014-12-211-1/+1
|
* Merge pull request #283 from yuriks/archive-refactorbunnei2014-12-161-2/+2
|\ | | | | Archive refactor
| * HLE: Rename namespaces to match move & fix initialization orderYuri Kunde Schlesner2014-12-161-1/+1
| |
| * HLE: Move kernel/archive.* to service/fs/Yuri Kunde Schlesner2014-12-161-1/+1
| |
* | Added stub for nim:aoc service...archshift2014-12-161-0/+2
| |
* | Added stub for cecd:u service...archshift2014-12-161-0/+2
| | | | | | | | I couldn't find any information about this service...
* | Added stub for ldr:ro service...archshift2014-12-161-0/+2
| |
* | Added am:app service stub.archshift2014-12-161-0/+2
|/ | | | Apparently nothing at all is known about this service...
* Convert old logging calls to new logging macrosYuri Kunde Schlesner2014-12-131-2/+2
|
* HLE: Revamp error handling throrough the HLE codeYuri Kunde Schlesner2014-11-241-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | 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"purpasmart962014-11-211-0/+12
| | | | in the service's headers
* Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot2014-11-191-1/+1
|
* Add missing boss:U service, needed according to Nintendo Zone logs.archshift2014-11-171-0/+2
|
* Add FRD:U service and functionsarchshift2014-11-111-0/+2
|
* Added stub err:f service.archshift2014-11-021-0/+2
|
* Added a bunch of servicespurpasmart962014-11-011-0/+16
|
* Renamed souce files of services to match port namesGareth Poole2014-10-291-5/+5
|
* core: Prune redundant includesarchshift2014-09-091-5/+0
|
* core: Pass string by reference in FetchFromPortName and DeleteServiceLioncash2014-09-061-2/+2
|
* FS: Added stubbed code to intercept and decode file system service functions.bunnei2014-06-271-0/+2
| | | | FS: Added to CMakeLists.txt
* HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei2014-06-131-2/+2
|
* service: removed PT_A from, as this was just an alias for APT_Ubunnei2014-05-301-2/+0
|
* hle: cleaned up log messagesbunnei2014-05-301-2/+6
|
* - created a Kernel namespacebunnei2014-05-211-2/+2
| | | | | - 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'sbunnei2014-05-191-15/+7
| | | | - various cleanups
* renamed "UID" to "Handle" where appropriatebunnei2014-05-191-8/+8
|
* added class stub for HID:User servicebunnei2014-04-171-0/+2
|
* - added stubbed out GSP::Gpu service interfacebunnei2014-04-161-0/+4
| | | | - various cleanups/refactors to HLE services
* fixed naming for APT_Ubunnei2014-04-161-1/+1
|
* - extracted srv: calls from service.cpp and put in its own modulebunnei2014-04-161-80/+4
| | | | | - added function tables for service calls - lots of refactoring
* added a stub for GetLockHandlebunnei2014-04-141-3/+7
|
* added framework for APT service (application and title launching service)bunnei2014-04-131-5/+24
|
* renamed class Interface_SRV to SRVbunnei2014-04-131-6/+6
|
* added some very initial command parsing for SRV Syncbunnei2014-04-131-5/+31
|
* cleanups to service HLEbunnei2014-04-131-6/+6
|
* - added HLE to connect to "srv:" servicebunnei2014-04-131-0/+115
- added a manager for keeping track of services/ports - added a memory mapped region for memory accessed by HLE - added HLE for GetThreadCommandBuffer function