aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt_u.cpp
AgeCommit message (Collapse)Author
2015-03-03Services: Moved the PTM and APT services to their own folderSubv
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.
2015-02-13core: Apply static to local functionsLioncash
2015-02-10Asserts: break/crash program, fit to style guide; log.h->assert.harchshift
Involves making asserts use printf instead of the log functions (log functions are asynchronous and, as such, the log won't be printed in time) As such, the log type argument was removed (printf obviously can't use it, and it's made obsolete by the file and line printing) Also removed some GEKKO cruft.
2015-02-02Kernel: Stop creating useless Handles during object creationYuri Kunde Schlesner
They're finally unnecessary, and will stop cluttering the application's handle table.
2015-02-02Service: Clean-up InterfaceYuri Kunde Schlesner
2015-01-30apt_u: Fix missing printf specifiersLioncash
2015-01-30Kernel: Convert Event to not use HandlesYuri Kunde Schlesner
2015-01-30Kernel: Convert Mutex to not use HandlesYuri Kunde Schlesner
2015-01-30Kernel: Convert SharedMemory to not use HandlesYuri Kunde Schlesner
2015-01-26Merge pull request #345 from purpasmart96/apt_stubsbunnei
APT_U: Stub some functions & misc changes
2015-01-22APT_U: Stub some functions & misc changespurpasmart96
2015-01-21Event: Fixed some bugs and cleanup (Subv)bunnei
2015-01-15APT: Fix typo in setting return code for NotifyToWaitbunnei
2015-01-14APT: Fixed the comment style in some variablesSebastian Valle
2015-01-13APTU: Stubbed NotifyToWait, taken from 3dmoo.Subv
Also renamed some handles in the APT:U service to be more descriptive. Fixed a typo in InquireNotification
2015-01-13Services: Added some missing services.Subv
cfg:s, ptm:sysm, apt:s. apt:s is almost exactly the same as apt:u as per 3dbrew
2015-01-10Logging: Log all called service functions (under trace). Compile out all ↵archshift
trace logs under release for performance.
2014-12-25Merge pull request #330 from purpasmart96/new_srvbunnei
More services & small clean ups
2014-12-25More services & small clean upspurpasmart96
2014-12-22Merge pull request #322 from chinhodado/masterbunnei
More warning cleanups
2014-12-21More warning cleanupsChin
2014-12-20License changepurpasmart96
2014-12-15Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner
This is a first step at fixing the conceptual insanity that is our handling of service and IPC calls. For now, interfaces still directly derived from Session because we don't have the infrastructure to do it properly. (That is, Processes and scheduling them.)
2014-12-13Convert old logging calls to new logging macrosYuri Kunde Schlesner
2014-12-12APT_U: Added GetSharedFont service function.bunnei
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP ↵Emmanuel Gil Peyrot
or generated
2014-11-11APT_U: Added stub for function AppletUtility.bunnei
2014-11-11APT_U: Set a valid parameter buffer size in GlanceParameter.bunnei
- Also Clarified GlanceParameter/ReceiveParameter documentation.
2014-11-11APT_U: Release service lock on initialization.bunnei
2014-11-11APT_U: Fixes for GetLockHandle to boot system titles.bunnei
- Also added comment to GetLockHandle function.
2014-10-29Renamed souce files of services to match port namesGareth Poole