summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/apt_u.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2015-02-02Service: Clean-up InterfaceYuri Kunde Schlesner1-1/+1
2015-01-30apt_u: Fix missing printf specifiersLioncash1-2/+2
2015-01-30Kernel: Convert Event to not use HandlesYuri Kunde Schlesner1-14/+12
2015-01-30Kernel: Convert Mutex to not use HandlesYuri Kunde Schlesner1-8/+8
2015-01-30Kernel: Convert SharedMemory to not use HandlesYuri Kunde Schlesner1-4/+4
2015-01-23APT_U: Stub some functions & misc changespurpasmart961-91/+276
2015-01-22Event: Fixed some bugs and cleanup (Subv)bunnei1-2/+2
2015-01-16APT: Fix typo in setting return code for NotifyToWaitbunnei1-1/+1
2015-01-14APT: Fixed the comment style in some variablesSebastian Valle1-2/+2
2015-01-14APTU: Stubbed NotifyToWait, taken from 3dmoo.Subv1-7/+21
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.Subv1-1/+1
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 trace logs under release for performance.archshift1-4/+0
2014-12-26More services & small clean upspurpasmart961-3/+0
2014-12-21More warning cleanupsChin1-2/+2
2014-12-21License changepurpasmart961-1/+1
2014-12-15Remove SyncRequest from K::Object and create a new K::Session typeYuri Kunde Schlesner1-8/+8
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 Schlesner1-10/+10
2014-12-13APT_U: Added GetSharedFont service function.bunnei1-34/+100
2014-11-19Remove trailing spaces in every file but the ones imported from SkyEye, AOSP or generatedEmmanuel Gil Peyrot1-2/+2
2014-11-12APT_U: Added stub for function AppletUtility.bunnei1-1/+29
2014-11-12APT_U: Set a valid parameter buffer size in GlanceParameter.bunnei1-17/+39
- Also Clarified GlanceParameter/ReceiveParameter documentation.
2014-11-12APT_U: Release service lock on initialization.bunnei1-0/+4
2014-11-12APT_U: Fixes for GetLockHandle to boot system titles.bunnei1-1/+18
- Also added comment to GetLockHandle function.
2014-10-29Renamed souce files of services to match port namesGareth Poole1-1/+1
2014-10-08APT: Added a stub for the "GlanceParameter" function.purpasmart961-1/+31
2014-10-05Added some more names to the function tablepurpasmart961-0/+2
Added "SetApplicationCpuTimeLimit" and "GetApplicationCpuTimeLimit" to apt.cpp
2014-07-04APT: Added stubbed ReceiveParameter and various cleanups.bunnei1-71/+93
APT: More cleanups. APT: Changed SignalType to be type u32.
2014-06-13HLE: Updated all uses of NULL to nullptr (to be C++11 compliant)bunnei1-74/+74
2014-06-03svc: added optional name field to Event and Mutex (used for debugging)bunnei1-3/+3
2014-05-30hle: cleaned up log messagesbunnei1-4/+4
2014-05-29apt: added stubbed function for InquireNotificationbunnei1-78/+86
2014-05-28APT_U: added stubbed function for APT_U::Enable, fixed some log messages to be more consistentbunnei1-3/+10
2014-05-28APT_U: added event creation to Initialize methodbunnei1-1/+11
2014-05-23APT_U: added a debug log on calling GetLockHandlebunnei1-0/+1
2014-05-21mutex: refactored the interface to code to return a Mutex* handlebunnei1-1/+2
2014-05-21mutex: initial commit of HLE modulebunnei1-6/+4
2014-05-20apt: changed stubbed handle to be something other than 0xDEADBEEF (used as a magic value in other places) so that I can track how it propagates through the app codebunnei1-1/+1
2014-05-17updated APT_U::GetLockHandle to return a valid handlebunnei1-1/+5
2014-05-08- removed HLE mem "hack" and replaced with kernel mem regionbunnei1-1/+1
- added a helper function for getting command buffer for services - fixed bug where GSP DMA was incorrectly being done in DataSynchronizationBarrier (instead of gsp_TriggerCmdReqQueue)
2014-04-25- refactored how service functions are calledbunnei1-3/+3
- added option to create/delete service handles
2014-04-17updated service commentsbunnei1-0/+3
2014-04-16restructured hle:services completely to use function lookup tablesbunnei1-107/+93
2014-04-16fixed naming for APT_Ubunnei1-3/+3
2014-04-16- extracted srv: calls from service.cpp and put in its own modulebunnei1-5/+86
- added function tables for service calls - lots of refactoring
2014-04-14added a stub for GetLockHandlebunnei1-5/+30
2014-04-13added framework for APT service (application and title launching service)bunnei1-0/+21