2019-07-12 01:13:43 +00:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pm
|
2019-02-14 00:44:39 +00:00
|
|
|
|
{
|
2019-07-10 15:59:54 +00:00
|
|
|
|
[Service("pm:shell")]
|
2019-02-14 00:44:39 +00:00
|
|
|
|
class IShellInterface : IpcService
|
|
|
|
|
{
|
2019-07-12 01:13:43 +00:00
|
|
|
|
public IShellInterface(ServiceCtx context) { }
|
2019-02-14 00:44:39 +00:00
|
|
|
|
|
2023-04-14 23:00:34 +00:00
|
|
|
|
[CommandCmif(6)]
|
2019-02-14 00:44:39 +00:00
|
|
|
|
// GetApplicationPid() -> u64
|
2019-07-14 19:04:38 +00:00
|
|
|
|
public ResultCode GetApplicationPid(ServiceCtx context)
|
2019-02-14 00:44:39 +00:00
|
|
|
|
{
|
|
|
|
|
// FIXME: This is wrong but needed to make hb loader works
|
|
|
|
|
// TODO: Change this when we will have a way to process via a PM like interface.
|
2022-02-09 20:18:07 +00:00
|
|
|
|
ulong pid = context.Process.Pid;
|
2019-02-14 00:44:39 +00:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(pid);
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2019-02-14 00:44:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|