fix vm.collect()

we don't freeze the vm on entry to C functions now
This commit is contained in:
CPunch 2023-08-26 15:03:56 -05:00
parent 1d2ba217af
commit 409937c1fa
1 changed files with 1 additions and 9 deletions

View File

@ -948,16 +948,8 @@ int cosmoB_vnewindexBProto(CState *state, int nargs, CValue *args)
// vm.collect()
int cosmoB_vcollect(CState *state, int nargs, CValue *args)
{
// first, unfreeze the state (we start frozen on entry to any C Function)
cosmoM_unfreezeGC(state);
// now force a garbage collection
// force a garbage collection
cosmoM_collectGarbage(state);
// and re-freeze the state
cosmoM_freezeGC(state);
// the end!
return 0;
}