Kernel: Rewind on SVC change.

This commit is contained in:
Fernando Sahmkow
2020-03-10 18:41:11 -04:00
parent d494b074e8
commit f370de84b1
3 changed files with 16 additions and 5 deletions

View File

@ -573,6 +573,14 @@ public:
return pausing_state != 0;
}
bool IsContinuousOnSVC() const {
return is_continuous_on_svc;
}
void SetContinuousOnSVC(bool is_continuous) {
is_continuous_on_svc = is_continuous;
}
private:
friend class GlobalScheduler;
friend class Scheduler;
@ -672,6 +680,8 @@ private:
bool is_waiting_on_sync = false;
bool is_sync_cancelled = false;
bool is_continuous_on_svc = false;
bool will_be_terminated = false;
std::string name;