summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Close reference to TimeZoneBinary on game closeKelebek12024-02-172-0/+5
|
* service: set: Migrate ISystemSettingsServer to new IPCNarr the Reg2024-02-143-42/+20
|
* glue: use multi wait APILiam2024-02-071-82/+48
|
* Fix firmware timezone boot load check.Kelebek12024-02-031-0/+1
|
* Merge pull request #12857 from liamwhite/constFernando S2024-02-026-19/+24
|\ | | | | service: use const references for input raw data
| * service: use const references for input raw dataLiam2024-02-016-19/+24
| |
* | Merge pull request #12845 from liamwhite/notifFernando S2024-02-023-126/+324
|\ \ | |/ |/| notif: rewrite for new IPC
| * notif: rewrite for new IPCLiam2024-01-293-126/+324
| |
* | Remove a few hacks for clock setups, which seem to no longer be needed, but fix network clock to local clock on every boot. Also fix some logging strings.Kelebek12024-01-312-20/+13
|/
* Move time services to new IPC.Kelebek12024-01-2712-691/+307
| | | | Add some fixes/improvements to usage with the new IPC
* Address review comments and fix compilation problemsFearlessTobi2024-01-253-3/+3
|
* Rework time service to fix time passing offline.Kelebek12024-01-2419-0/+2404
|
* kernel: fix debugger and process list lifetimeLiam2024-01-131-3/+4
|
* core: remove ResultVal typeLiam2023-08-083-22/+29
|
* core: implement GetGaiStringErrorRequest, IContextRegistrarLiam2023-07-232-1/+45
|
* kernel: convert KProcess to new styleLiam2023-03-131-2/+2
|
* hle: rename legacy errors to ResultsLiam2023-03-074-29/+28
|
* service: move hle_ipc from kernelLiam2023-03-016-32/+32
|
* service: refactor server architectureLiam2023-02-212-11/+15
| | | | Converts services to have their own processes
* Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj2023-02-031-1/+2
| | | | | This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing changes made to af20e25081f97d55b451606c87922e2b49f0d363.
* Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"liamwhite2023-02-021-2/+1
|
* hle_ipc: Rename ReadBufferSpan to ReadBufferameerj2022-12-291-2/+2
|
* hle_ipc: Rename ReadBuffer to ReadBufferCopyameerj2022-12-291-1/+2
| | | | Indicates explicitly that a copy is occurring
* service: Use ReadBufferSpan where it is trivial to do soameerj2022-12-251-2/+2
|
* core: Replace all instances of ResultCode with Resultgerman772022-06-274-10/+10
|
* service: notifa: Implement most part of this servicegerman772022-05-092-8/+172
| | | | | Implements partially RegisterAlarmSetting, UpdateAlarmSetting, LoadApplicationParameter, DeleteAlarmSetting. Needed for Fitness `Boxing 2: Rhythm & Exercise` and `Ring Fit Adventure`.
* general: Convert source file copyright comments over to SPDXMorph2022-04-2313-39/+26
| | | | | This formats all copyright comments according to SPDX formatting guidelines. Additionally, this resolves the remaining GPLv2 only licensed files by relicensing them to GPLv2.0-or-later.
* service/notif: Add notif:a and stub ListAlarmSettings,Initializegerman772021-12-063-0/+73
| | | | Used by ring fit adventure 1.2.0
* general: Rename GetTitleID to GetProgramIDMorph2021-11-041-1/+1
|
* core: Remove unused includesameerj2021-11-042-2/+0
|
* general: Remove MakeResult helpersMorph2021-11-021-2/+2
| | | | This is made obsolete by the presence of implicit constructors.
* service: Reduce header include overheadMorph2021-10-071-2/+0
|
* service: Append service name prefix to common filenamesMorph2021-07-143-2/+2
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-023-11/+11
| | | | Transition to PascalCase for result names.
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-1/+1
|
* glue: Add ectx:aw placeholdergerman772021-04-243-0/+47
|
* arp: Use type alias for issue functionLioncash2021-04-191-4/+4
| | | | Reduces some verbosity and centralizes the function details in one spot.
* arp: Prevent uninitialized read of launch member variableLioncash2021-04-191-1/+1
| | | | | | | | | If anything happened to call arp functions in the wrong order and called IRegistrar's Issue function before SetApplicationLaunchProperty, we'd read from an uninitialized ApplicationLaunchProperty instance. Instead, we can always initialize it so if this does happen, then the outcome of doing such a thing is at least consistently reproducible.
* Merge pull request #6171 from german77/servicesbunnei2021-04-102-3/+10
|\ | | | | service: Update service function tables and use proper names
| * arp: Use proper names, update to 12.xgerman772021-04-092-3/+10
| |
* | bgtc: Update to 12.x and implement OpenTaskServiceMorph2021-04-092-1/+34
|/
* service: Eliminate usages of the global system instanceLioncash2020-11-275-16/+19
| | | | | Completely removes all usages of the global system instance within the services code by passing in the using system instance to the services.
* ipc_helpers: Remove usage of the global system instanceLioncash2020-11-081-0/+1
| | | | | | | | | Resolves numerous deprecation warnings throughout the codebase due to inclusion of this header. Now building core should be significantly less noisy (and also relying on less global state). This also uncovered quite a few modules that were relying on indirect includes, which have also been fixed.
* style: Change AMs & Glues error codes to be dec instead of hexDavid Marcec2020-04-281-4/+4
| | | | Consistency for the rest of the error codes in the codebase
* glue: Correct missing bytes in ApplicationLaunchParameterZach Hilman2019-06-264-28/+61
|
* glue: Implement arp:w and arp:r servicesZach Hilman2019-06-252-0/+328
| | | | These keep track of running process' launch properties and control properties and allows for issuing and reading them by process and title ID.
* glue: Add errors for glue/arp servicesZach Hilman2019-06-253-0/+58
|
* glue: Add scaffolding for bgtc:t and bgtc:sc servicesZach Hilman2019-06-252-0/+73
|
* glue: Add manager to keep track of application registryZach Hilman2019-06-252-0/+119
Manages mapping between title IDs and application launch and control properties.