]> Nishi Git Mirror - gwion.git/commitdiff
:shirt: Remove debug statement
authorfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 6 Apr 2019 07:29:55 +0000 (09:29 +0200)
committerfennecdjay <astor.jeremie@wanadoo.fr>
Sat, 6 Apr 2019 07:29:55 +0000 (09:29 +0200)
src/gwion.c

index 009954b24adab54f7bb88383446f85406bf78c69..89984493cf3c48104c581a8170617f3d623151a5 100644 (file)
@@ -57,7 +57,6 @@ ANN VM* gwion_cpy(const VM* src) {
   const Gwion gwion = mp_alloc(src->gwion->p, Gwion);
   gwion->vm = new_vm(src->gwion->p);
   gwion->vm->gwion = gwion;
-//gwion->vm->shreduler->bbq->is_running = 1;
   gwion->vm->bbq->si = soundinfo_cpy(src->gwion->p, src->bbq->si);
   gwion->emit = src->gwion->emit;
   gwion->env = src->gwion->env;
@@ -66,11 +65,11 @@ ANN VM* gwion_cpy(const VM* src) {
   gwion->p = src->gwion->p;
   return gwion->vm;
 }
+
 ANN m_bool gwion_ini(const Gwion gwion, Arg* arg) {
   gwion->p = mempool_ini((sizeof(VM_Shred) + SIZEOF_REG + SIZEOF_MEM) / SZ_INT);
   gwion->st = new_symbol_table(gwion->p, 65347);
   gwion->vm = new_vm(gwion->p);
-printf("non fork vm: %p\n", gwion->vm->shreduler);
   gwion->emit = new_emitter();
   gwion->env = new_env(gwion->p);
   gwion->emit->env = gwion->env;