Example #1
0
 public QDVMthread()
 {
     id    = "";
     st    = new Stack <int>();
     rs    = new Stack <int>();
     vars  = new int[QDVMdef.LOC_VAR_COUNT];
     code  = null;
     state = QDThrState.NEW;
     ip    = 0;
 }
Example #2
0
 public void Kick()
 {
     state = QDThrState.WAIT;
 }