Thread: Release the ARM Interface on exitting.

This commit is contained in:
Fernando Sahmkow 2020-03-07 14:16:25 -04:00
parent 1567824d2d
commit 5974e3ea33
3 changed files with 8 additions and 1 deletions

View file

@ -610,6 +610,10 @@ public:
is_phantom_mode = phantom;
}
bool HasExited() const {
return has_exited;
}
private:
friend class GlobalScheduler;
friend class Scheduler;
@ -714,6 +718,7 @@ private:
bool will_be_terminated = false;
bool is_phantom_mode = false;
bool has_exited = false;
bool was_running = false;