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