1 parent d9dc6ff commit d95b519Copy full SHA for d95b519
1 file changed
unix/gccollect.c
@@ -131,7 +131,9 @@ void gc_collect(void) {
131
// GC stack (and regs because we captured them)
132
void **regs_ptr = (void**)(void*)®s;
133
gc_collect_root(regs_ptr, ((mp_uint_t)MP_STATE_VM(stack_top) - (mp_uint_t)®s) / sizeof(mp_uint_t));
134
+ #ifndef _WIN32
135
mp_unix_mark_exec();
136
+ #endif
137
gc_collect_end();
138
139
//printf("-----\n");
0 commit comments