Dispose threads when VM halts.

This commit is contained in:
jtuu 2019-10-11 15:02:54 +03:00
parent c7b27846c8
commit 9facc6357c

View File

@ -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;
} }