summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt/apt.cpp (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Add helpers to create IPC command buffer headers and descriptorsYuri Kunde Schlesner2015-06-231-2/+4
|
* Remove every trailing whitespace from the project (but externals).Emmanuel Gil Peyrot2015-05-291-2/+2
|
* APT/FS: Remove asserts that were causing false positivespurpasmart962015-05-161-2/+0
|
* Kernel: Capture SharedMemory attributes at creation, not when mappingYuri Kunde Schlesner2015-05-111-1/+3
|
* Common: Remove common.hYuri Kunde Schlesner2015-05-071-0/+2
|
* Services: Initialize all state variables at bootup.bunnei2015-05-021-6/+11
|
* APT: (Subv) Fix bug where start event was being incorrectly signaled.bunnei2015-04-101-6/+7
|
* Services: Stubs and minor changespurpasmart962015-04-031-18/+56
|
* Services: Moved the PTM and APT services to their own folderSubv2015-03-041-0/+285
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.