summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/pm (follow)
Commit message (Collapse)AuthorAgeFilesLines
* 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.