summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* kernel: convert KProcess to new styleLiam2023-03-131-10/+10
|
* service: move hle_ipc from kernelLiam2023-03-011-10/+10
|
* service: refactor server architectureLiam2023-02-212-8/+11
| | | | Converts services to have their own processes
* core: Replace all instances of ResultCode with Resultgerman772022-06-271-6/+6
|
* general: Convert source file copyright comments over to SPDXMorph2022-04-232-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.
* service: pm: Implement AtmosphereGetProcessInfotech-ticks2022-02-041-0/+45
|
* service: pm: Implement AtmosphereGetProcessIdMorph2021-11-211-0/+24
| | | | - Used by Skyline modding framework
* service: pm: Add all relevant result codesMorph2021-11-211-3/+8
|
* service: pm: Rename title id to program idMorph2021-11-211-6/+6
|
* general: Rename GetTitleID to GetProgramIDMorph2021-11-041-2/+2
|
* general: Replace RESULT_SUCCESS with ResultSuccessMorph2021-06-021-5/+5
| | | | Transition to PascalCase for result names.
* core: Make variable shadowing a compile-time errorLioncash2021-05-161-6/+6
| | | | | | Now that we have most of core free of shadowing, we can enable the warning as an error to catch anything that may be remaining and also eliminate this class of logic bug entirely.
* hle: kernel: Rename Process to KProcess.bunnei2021-05-061-7/+8
|
* hle: kernel: Migrate KProcess to KAutoObject.bunnei2021-05-061-7/+5
|
* service: Eliminate usages of the global system instanceLioncash2020-11-271-11/+12
| | | | | 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.
* service: Update function tablesVolcaEM2020-06-291-17/+17
|
* Merge pull request #3094 from lioncash/tablesbunnei2019-11-251-1/+1
|\ | | | | service: Update function tables
| * service: Update function tablesLioncash2019-11-121-1/+1
| | | | | | | | | | | | Keeps the function tables up to date. Updated based off information from Switchbrew.
* | kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. (#3154)bunnei2019-11-251-6/+6
|/ | | | | | * kernel: Replace usage of boost::intrusive_ptr with std::shared_ptr for kernel objects. - See https://github.com/citra-emu/citra/pull/4710 for details.
* pm: Implement pm:shell and pm:dmnt GetApplicationPidZach Hilman2019-06-272-6/+32
| | | | Returns the process ID of the current application or 0 if no app is running.
* pm: Implement pm:dmnt GetTitlePidZach Hilman2019-06-271-7/+36
| | | | Takes a title ID and searches for a matching process, returning error if it doesn't exist, otherwise the process ID.
* pm: Implement pm:info GetTitleIdZach Hilman2019-06-271-2/+47
| | | | Searches the process list for a process with the specified ID, returning the title ID if it exists.
* service: Update service function tablesLioncash2019-04-111-7/+14
| | | | Updates function tables based off information from SwitchBrew.
* service/pm: Implement SetMaintenanceBoot()Lioncash2019-01-281-1/+10
| | | | | | | This quite literally functions as a basic setter. No other error checking or anything (since there's nothing to really check against). With this, it completes the pm:bm interface in terms of functionality.
* service/pm: Tidy up functionality related to SystemBootModeLioncash2019-01-282-2/+9
| | | | Just minor tidying of interfaces.
* Changed logging to be "Log before execution", Added more error logging, all services should now log on some levelDavid Marcec2018-11-261-2/+2
|
* Added GetBootMode (#1107)David2018-08-242-2/+13
| | | | | | | | * Added GetBootMode Used by homebrew * Added enum for GetBootMode
* service: Add pm servicesLioncash2018-07-252-0/+86
Adds the skeleton for the process management services based off information on Switch Brew.