summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue (unfollow)
Commit message (Collapse)AuthorFilesLines
2024-02-19scope_exit: Make constexprFearlessTobi2-28/+49
Allows the use of the macro in constexpr-contexts. Also avoids some potential problems when nesting braces inside it.
2024-02-17Close reference to TimeZoneBinary on game closeKelebek12-0/+5
2024-02-14service: set: Migrate ISystemSettingsServer to new IPCNarr the Reg3-42/+20
2024-02-07glue: use multi wait APILiam1-82/+48
2024-02-03Fix firmware timezone boot load check.Kelebek11-0/+1
2024-02-01service: use const references for input raw dataLiam6-19/+24
2024-01-31Remove 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.Kelebek12-20/+13
2024-01-29notif: rewrite for new IPCLiam3-126/+324
2024-01-27Move time services to new IPC.Kelebek112-691/+307
Add some fixes/improvements to usage with the new IPC
2024-01-25Address review comments and fix compilation problemsFearlessTobi3-3/+3
2024-01-24Rework time service to fix time passing offline.Kelebek119-0/+2404
2024-01-13kernel: fix debugger and process list lifetimeLiam1-3/+4
2023-08-08core: remove ResultVal typeLiam3-22/+29
2023-07-23core: implement GetGaiStringErrorRequest, IContextRegistrarLiam2-1/+45
2023-03-13kernel: convert KProcess to new styleLiam1-2/+2
2023-03-07hle: rename legacy errors to ResultsLiam4-29/+28
2023-03-01service: move hle_ipc from kernelLiam6-32/+32
2023-02-21service: refactor server architectureLiam2-11/+15
Converts services to have their own processes
2023-02-03Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj1-1/+2
This reverts commit 25fc5c0e1158cb8e81cbc769b24ad84032a1fbfd, reversing changes made to af20e25081f97d55b451606c87922e2b49f0d363.
2023-02-02Revert "hle_ipc: Use std::span to avoid heap allocations/copies when calling ReadBuffer"liamwhite1-2/+1
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-2/+2
2022-12-29hle_ipc: Rename ReadBuffer to ReadBufferCopyameerj1-1/+2
Indicates explicitly that a copy is occurring
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-2/+2
2022-06-27core: Replace all instances of ResultCode with Resultgerman774-10/+10
2022-05-09service: notifa: Implement most part of this servicegerman772-8/+172
Implements partially RegisterAlarmSetting, UpdateAlarmSetting, LoadApplicationParameter, DeleteAlarmSetting. Needed for Fitness `Boxing 2: Rhythm & Exercise` and `Ring Fit Adventure`.
2022-04-23general: Convert source file copyright comments over to SPDXMorph13-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.
2021-12-06service/notif: Add notif:a and stub ListAlarmSettings,Initializegerman773-0/+73
Used by ring fit adventure 1.2.0
2021-11-04general: Rename GetTitleID to GetProgramIDMorph1-1/+1
2021-11-04core: Remove unused includesameerj2-2/+0
2021-11-02general: Remove MakeResult helpersMorph1-2/+2
This is made obsolete by the presence of implicit constructors.
2021-10-07service: Reduce header include overheadMorph1-2/+0
2021-07-14service: Append service name prefix to common filenamesMorph3-2/+2
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph3-11/+11
Transition to PascalCase for result names.
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
2021-04-24glue: Add ectx:aw placeholdergerman773-0/+47
2021-04-19arp: Use type alias for issue functionLioncash1-4/+4
Reduces some verbosity and centralizes the function details in one spot.
2021-04-19arp: Prevent uninitialized read of launch member variableLioncash1-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.
2021-04-09bgtc: Update to 12.x and implement OpenTaskServiceMorph2-1/+34
2021-04-09arp: Use proper names, update to 12.xgerman772-3/+10
2020-11-27service: Eliminate usages of the global system instanceLioncash5-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.
2020-11-08ipc_helpers: Remove usage of the global system instanceLioncash1-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.
2020-04-28style: Change AMs & Glues error codes to be dec instead of hexDavid Marcec1-4/+4
Consistency for the rest of the error codes in the codebase
2019-06-26glue: Correct missing bytes in ApplicationLaunchParameterZach Hilman4-28/+61
2019-06-25glue: Implement arp:w and arp:r servicesZach Hilman2-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.
2019-06-25glue: Add errors for glue/arp servicesZach Hilman3-0/+58
2019-06-25glue: Add scaffolding for bgtc:t and bgtc:sc servicesZach Hilman2-0/+73
2019-06-25glue: Add manager to keep track of application registryZach Hilman2-0/+119
Manages mapping between title IDs and application launch and control properties.