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
|
|
|
|
|
2019-07-12 01:13:43 +00:00
|
|
|
|
[Command(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.
|
|
|
|
|
long pid = context.Process.Pid;
|
|
|
|
|
|
|
|
|
|
context.ResponseData.Write(pid);
|
|
|
|
|
|
2019-07-14 19:04:38 +00:00
|
|
|
|
return ResultCode.Success;
|
2019-02-14 00:44:39 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|