aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/service.cpp
Commit message (Collapse)AuthorAge
* Change trace/unimplemented service call logs to use hexGravatar archshift2015-07-19
| | | | Changes the log to use hex in the parameter list instead of decimal.
* Services: Continue separation of services into their own foldersGravatar purpasmart962015-06-11
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* De-inline functions from Interface, removing them from service.hGravatar Yuri Kunde Schlesner2015-04-14
| | | | This reduces the time for a full recompile from 65.43s to 59.53s (~9%)
* IR: Move The IR services to their own folder and implement "GetHandles"Gravatar purpasmart962015-04-03
|
* Services: Stubs and minor changesGravatar purpasmart962015-04-02
|
* Services: Moved the PTM and APT services to their own folderGravatar Subv2015-03-03
| | | | | | This coincidentally fixes an issue about the PTM service failing to create its SharedExtSaveData archive due to the FS service not being initialized by the time the creating code runs. Ideally I'd like to move each process to its own folder, and have a single file per process that registers the service classes, which would be in their own files inside that folder. Then each service class would just call functions from the process to complete the commands.
* Services: Fixed "Tried to connect to named port err:f".Gravatar Subv2015-02-16
| | | | err:f is a named port, not a service
* Make Port/Service registration and querying more HW-accurateGravatar Yuri Kunde Schlesner2015-02-02
|
* Services: Stubbed more services.Gravatar Subv2015-01-24
| | | | Implemented FSUser::CreateExtSaveData
* Merge pull request #493 from archshift/ptmplayGravatar bunnei2015-01-22
|\ | | | | Stubbed some services
* | Added HID_SPVR service and split HID_U implementation into service/hid/hid.xxxGravatar archshift2015-01-21
| |
| * Stubbed cam:u serviceGravatar archshift2015-01-21
| |
| * Stubbed ptm:play serviceGravatar archshift2015-01-21
|/
* Services: Added some missing services.Gravatar Subv2015-01-13
| | | | | cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
* Kernel: Start using boost::intrusive_ptr for lifetime managementGravatar Yuri Kunde Schlesner2015-01-09
|
* Fix double-free in Service manager during shutdownGravatar Yuri Kunde Schlesner2015-01-07
| | | | Fixes #423.
* Stub the y2r:u serviceGravatar archshift2015-01-03
|
* Kernel: New handle managerGravatar Yuri Kunde Schlesner2014-12-28
| | | | | | | | | | | This handle manager more closely mirrors the behaviour of the CTR-OS one. In addition object ref-counts and support for DuplicateHandle have been added. Note that support for DuplicateHandle is still experimental, since parts of the kernel still use Handles internally, which will likely cause troubles if two different handles to the same object are used to e.g. wait on a synchronization primitive.
* Rename ObjectPool to HandleTableGravatar Yuri Kunde Schlesner2014-12-28
|
* More services & small clean upsGravatar purpasmart962014-12-25
|
* CFG: Create a new subfolder cfg inside service to handle cfgGravatar Subv2014-12-21
| | | | Moved most of the shared CFG code there, implemented a few CFG:I functions
* License changeGravatar purpasmart962014-12-20
|
* Merge pull request #283 from yuriks/archive-refactorGravatar bunnei2014-12-15
|\ | | | | Archive refactor
| * HLE: Rename namespaces to match move & fix initialization orderGravatar Yuri Kunde Schlesner2014-12-16
| |
| * HLE: Move kernel/archive.* to service/fs/Gravatar Yuri Kunde Schlesner2014-12-16
| |
* | Added stub for nim:aoc service...Gravatar archshift2014-12-15
| |
* | Added stub for cecd:u service...Gravatar archshift2014-12-15
| | | | | | | | I couldn't find any information about this service...
* | Added stub for ldr:ro service...Gravatar archshift2014-12-15
| |
* | Added am:app service stub.Gravatar archshift2014-12-15
|/ | | | Apparently nothing at all is known about this service...
* 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
|