blob: 1ee2c377f0c620cd10b1f6457c8cf2e326748680 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
namespace Ryujinx.HLE.HOS.Services.Pm
{
[Service("pm:shell")]
class IShellInterface : IpcService
{
public IShellInterface(ServiceCtx context) { }
[CommandCmif(6)]
// GetApplicationPid() -> u64
public ResultCode GetApplicationPid(ServiceCtx context)
{
// 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.
ulong pid = context.Process.Pid;
context.ResponseData.Write(pid);
return ResultCode.Success;
}
}
}
|