summaryrefslogtreecommitdiff
path: root/src/core/hle/kernel/thread.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/kernel/thread.h')
-rw-r--r--src/core/hle/kernel/thread.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 9a29875ac..168828ab0 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -573,6 +573,14 @@ public:
573 return pausing_state != 0; 573 return pausing_state != 0;
574 } 574 }
575 575
576 bool IsContinuousOnSVC() const {
577 return is_continuous_on_svc;
578 }
579
580 void SetContinuousOnSVC(bool is_continuous) {
581 is_continuous_on_svc = is_continuous;
582 }
583
576private: 584private:
577 friend class GlobalScheduler; 585 friend class GlobalScheduler;
578 friend class Scheduler; 586 friend class Scheduler;
@@ -672,6 +680,8 @@ private:
672 bool is_waiting_on_sync = false; 680 bool is_waiting_on_sync = false;
673 bool is_sync_cancelled = false; 681 bool is_sync_cancelled = false;
674 682
683 bool is_continuous_on_svc = false;
684
675 bool will_be_terminated = false; 685 bool will_be_terminated = false;
676 686
677 std::string name; 687 std::string name;