diff options
author | Jo-Philipp Wich <jo@mein.io> | 2021-07-10 19:37:40 +0200 |
---|---|---|
committer | Jo-Philipp Wich <jo@mein.io> | 2021-07-11 15:49:14 +0200 |
commit | 559eff22d201f0dfa16198ae7724f173f1ea948c (patch) | |
tree | 6431c46153a93b609052b72cd62971372fed980b /vm.c | |
parent | e5e7e6277cc757475ad192f70a4b200778e1d8ee (diff) |
types, vm: adjust GC api
Provide separate public ucv_gc() and ucv_freeall() functions to perform
an incremental and complete GC run respectively.
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'vm.c')
-rw-r--r-- | vm.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -183,7 +183,7 @@ void uc_vm_free(uc_vm_t *vm) printbuf_free(vm->strbuf); - ucv_gc(vm, true); + ucv_freeall(vm); for (i = 0; i < vm->restypes.count; i++) free(vm->restypes.entries[i]); |