2019-07-11 20:13:43 -05:00
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Pm
|
2019-02-13 18:44:39 -06:00
|
|
|
|
{
|
2019-07-10 10:59:54 -05:00
|
|
|
|
[Service("pm:shell")]
|
2019-02-13 18:44:39 -06:00
|
|
|
|
class IShellInterface : IpcService
|
|
|
|
|
{
|
2019-07-11 20:13:43 -05:00
|
|
|
|
public IShellInterface(ServiceCtx context) { }
|
2019-02-13 18:44:39 -06:00
|
|
|
|
|
2021-04-13 17:01:24 -05:00
|
|
|
|
[CommandHipc(6)]
|
2019-02-13 18:44:39 -06:00
|
|
|
|
// GetApplicationPid() -> u64
|
2019-07-14 14:04:38 -05:00
|
|
|
|
public ResultCode GetApplicationPid(ServiceCtx context)
|
2019-02-13 18:44:39 -06: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 14:18:07 -06:00
|
|
|
|
ulong pid = context.Process.Pid;
|
2019-02-13 18:44:39 -06:00
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(pid);
|
|
|
|
|
|
2019-07-14 14:04:38 -05:00
|
|
|
|
return ResultCode.Success;
|
2019-02-13 18:44:39 -06:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|