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)
This commit is contained in:
Ac_K 2019-09-02 01:55:38 +02:00 committed by gdkchan
parent a1c7415565
commit c00c638ecc
3 changed files with 65 additions and 2 deletions

View file

@ -0,0 +1,9 @@
namespace Ryujinx.HLE.HOS.Services.Nv.NvHostChannel
{
enum NvChannelPriority
{
Low = 50,
Medium = 100,
High = 150
}
}