mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
Dispose threads when VM halts.
This commit is contained in:
parent
c7b27846c8
commit
9facc6357c
@ -815,6 +815,10 @@ export class VirtualMachine {
|
|||||||
* Halts execution of all threads.
|
* Halts execution of all threads.
|
||||||
*/
|
*/
|
||||||
halt(): void {
|
halt(): void {
|
||||||
|
for (const thread of this.thread) {
|
||||||
|
thread.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
this.thread = [];
|
this.thread = [];
|
||||||
this.thread_idx = 0;
|
this.thread_idx = 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user