Reschedule() public method

public Reschedule ( ) : void
return void
Example #1
0
 public int sceAudioChReserve(CpuThreadState CpuThreadState, int ChannelId, int SampleCount, PspAudio.FormatEnum Format)
 {
     var RetChannelId = _sceAudioChReserve(ChannelId, SampleCount, Format);
     CpuThreadState.Reschedule();
     //ThreadManager.
     return RetChannelId;
 }
Example #2
0
 public int sceUtilityLoadModule(CpuThreadState CpuThreadState, PspModule PspModule)
 {
     if (PspModule == Hle.PspModule.PSP_MODULE_AV_SASCORE)
     {
         CpuThreadState.Reschedule();
     }
     //throw (new NotImplementedException());
     return 0;
 }