summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/prepo (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-03-01service: move hle_ipc from kernelLiam1-8/+8
2023-02-21service: refactor server architectureLiam2-11/+16
Converts services to have their own processes
2023-02-14remove static from pointer sized or smaller types for aesthetics, change constexpr static to static constexpr for consistencyarades791-2/+2
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14add static lifetime to constexpr values to force compile time evaluation where possiblearades791-2/+2
Signed-off-by: arades79 <scravers@protonmail.com>
2023-02-14general: rename CurrentProcess to ApplicationProcessLiam1-2/+2
2023-02-03Revert "Merge pull request #9718 from yuzu-emu/revert-9508-hle-ipc-buffer-span"ameerj1-4/+4
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-4/+4
2022-12-29hle_ipc: Rename ReadBufferSpan to ReadBufferameerj1-8/+8
2022-12-25service: Use ReadBufferSpan where it is trivial to do soameerj1-12/+12
2022-04-23general: Convert source file copyright comments over to SPDXMorph2-6/+4
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: Get the current process program id directly from the systemMorph1-3/+2
This allows us to avoid including KProcess' header file in files that only need to get the current process' program id.
2021-11-04general: Rename GetTitleID to GetProgramIDMorph1-2/+2
2021-06-02general: Replace RESULT_SUCCESS with ResultSuccessMorph1-7/+7
Transition to PascalCase for result names.
2021-05-06hle: kernel: Rename Process to KProcess.bunnei1-1/+1
2021-05-06hle: kernel: Refactor out various KThread std::shared_ptr usage.bunnei1-4/+4
2021-01-31prepo: Stub GetTransmissionStatusMorph1-1/+11
2021-01-31prepo: Stub RequestImmediateTransmissionMorph1-1/+8
- Used by Animal Crossing: New Horizons
2021-01-30Stub GetSystemSessionIdgerman1-1/+10
2021-01-28prepo: Fix BufferDescriptorX invalid buffer errors and add "New" variants of SaveReportMorph1-24/+42
The second input buffer could be optional when prepo/srepo is called, test for the availability of the second buffer prior to reading from it.
2020-12-08core: Remove unnecessary enum casts in log callsLioncash1-2/+2
Follows the video core PR. fmt doesn't require casts for enum classes anymore, so we can remove quite a few casts.
2020-11-27service: Eliminate usages of the global system instanceLioncash2-8/+5
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-06-29service: Update function tablesVolcaEM1-0/+5
2020-06-24prepo: : Don't read extra buffer from report unless passedDavid Marcec1-1/+6
Prepo doesn't always pass a secondary buffer, we assume it always does which leads to a bad read.
2020-04-20service: Update function tablesLioncash1-4/+8
Keeps the service function tables up to date. Updated based off information on SwitchBrew.
2020-02-06services: prepo: Fix IPC interface with SaveReport/SaveReportWithUser.bunnei1-15/+15
2019-11-12service: Update function tablesLioncash1-0/+1
Keeps the function tables up to date. Updated based off information from Switchbrew.
2019-09-22RebaseDavid Marcec2-8/+12
2019-09-22prepo: Remove system global accessorsZach Hilman2-14/+17
2019-09-22prepo: Implement SaveReport New and System variantsZach Hilman1-15/+71
2019-05-26loader: Move NSO module tracking to AppLoaderZach Hilman1-3/+3
Also cleanup of general stuff
2019-05-25prepo: Save reports from PlayReport serviceZach Hilman1-2/+23
Logs a lot of seemingly innocuous telemetry games generate.
2018-10-21prepo: Update service function table.Lioncash1-8/+13
Also introduces the new prepo:a2 service. Updated based off information provided by Switchbrew.
2018-09-12service/prepo: Move class into the cpp fileLioncash2-39/+40
This doesn't need to be exposed within the header and be kept in the translation unit, eliminating the need to include anything within the header.
2018-07-19service/prepo: Add missing header guardLioncash1-0/+2
2018-07-03Rename logging macro back to LOG_*James Rowe1-1/+1
2018-04-27Switched to NGLOG_WARNINGDavid Marcec1-1/+1
2018-04-26Added PREPO to logging backend, Removed comments from SaveReportWithUserDavid Marcec1-12/+1
2018-04-23GetIUserInterface->CreateUserInterface, Added todos and stub logs. Playreport->PlayReport.David Marcec2-15/+29
2018-04-22lioncash proposed changesDavid1-2/+2
2018-04-22Implemented GetIUserInterface properly, Playreport and SSL::SetInterfaceVersion. Fixed ipc issues with IAudioDevice(wrong ids)David Marcec2-0/+63