summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/glue/arp.cpp (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-12-29hle_ipc: Rename ReadBuffer to ReadBufferCopyameerj1-1/+2
Indicates explicitly that a copy is occurring
2022-06-27core: Replace all instances of ResultCode with Resultgerman771-1/+1
2022-04-23general: Convert source file copyright comments over to SPDXMorph1-3/+2
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-11-04general: Rename GetTitleID to GetProgramIDMorph1-1/+1
2021-11-04core: Remove unused includesameerj1-1/+0
2021-10-07service: Reduce header include overheadMorph1-2/+0
2021-07-14service: Append service name prefix to common filenamesMorph1-1/+1
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-8/+8
Transition to PascalCase for result names.
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
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-09arp: Use proper names, update to 12.xgerman771-2/+9
2020-11-27service: Eliminate usages of the global system instanceLioncash1-6/+7
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.
2019-06-26glue: Correct missing bytes in ApplicationLaunchParameterZach Hilman1-9/+21
2019-06-25glue: Implement arp:w and arp:r servicesZach Hilman1-0/+285
These keep track of running process' launch properties and control properties and allows for issuing and reading them by process and title ID.