Ryujinx/Ryujinx.HLE/HOS/Services/Nv/NvHostChannel/NvChannel.cs
Ac_K c00c638ecc NvHostChannelIoctl: Implement setter for SetSubmitTimeout, SetPriority and SetTimeslice (#747)
- Implement accurate setter for SetPriority.
- Implement accurate setter for SetTimeslice (close #666).
- Implement basic setter for SetSubmitTimeout (close #678).

(plus some comments and a missing `PrintStub` call)
2019-09-01 20:55:38 -03:00

9 lines
179 B
C#

namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
{
class NvChannel
{
public int Timeout;
public int SubmitTimeout;
public int Timeslice;
}
}