aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/service/apt/apt.cpp
Commit message (Collapse)AuthorAge
* Service/APT: Fixed a regression, PreloadLibraryApplet should also start an ↵Gravatar Subv2015-07-23
| | | | applet when called.
* Service/APT: Return proper parameters in GetLockHandle.Gravatar Subv2015-07-23
| | | | | Documented some APT functions This allows applets to boot.
* Ensure all kernel objects are released during shutdownGravatar Yuri Kunde Schlesner2015-07-17
| | | | | | | | This commit fixes several kernel object leaks. The most severe of them was threads not being removed from the private handle table used for CoreTiming events. This resulted in Threads never being released, which in turn held references to Process, causing CodeSets to never be freed when loading other applications.
* Applets: Reworked how the Applet update event is handled.Gravatar Subv2015-07-11
| | | | Applets are now cleaned up in AppletUpdateEvent after calling their respective Update method.
* Applets: Add infrastructure to allow custom drawing and input handling in ↵Gravatar Subv2015-07-11
| | | | Applets.
* HLE/APT: Initial HLE support for applets.Gravatar Subv2015-07-11
| | | | Currently only the SWKBD is emulated, and there's currently no way to ask the user for input, so it always returns "Subv" as the text.
* Add helpers to create IPC command buffer headers and descriptorsGravatar Yuri Kunde Schlesner2015-06-22
|
* Remove every trailing whitespace from the project (but externals).Gravatar Emmanuel Gil Peyrot2015-05-29
|
* APT/FS: Remove asserts that were causing false positivesGravatar purpasmart962015-05-15
|
* Kernel: Capture SharedMemory attributes at creation, not when mappingGravatar Yuri Kunde Schlesner2015-05-10
|
* Common: Remove common.hGravatar Yuri Kunde Schlesner2015-05-07
|
* Services: Initialize all state variables at bootup.Gravatar bunnei2015-05-01
|
* APT: (Subv) Fix bug where start event was being incorrectly signaled.Gravatar bunnei2015-04-09
|
* 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.