Skip to content
Snippets Groups Projects
Commit d95b519a authored by Damien George's avatar Damien George
Browse files

unix, windows: Don't call mp_unix_mark_exec on windows.

parent d9dc6fff
No related branches found
No related tags found
No related merge requests found
...@@ -131,7 +131,9 @@ void gc_collect(void) { ...@@ -131,7 +131,9 @@ void gc_collect(void) {
// GC stack (and regs because we captured them) // GC stack (and regs because we captured them)
void **regs_ptr = (void**)(void*)&regs; void **regs_ptr = (void**)(void*)&regs;
gc_collect_root(regs_ptr, ((mp_uint_t)MP_STATE_VM(stack_top) - (mp_uint_t)&regs) / sizeof(mp_uint_t)); gc_collect_root(regs_ptr, ((mp_uint_t)MP_STATE_VM(stack_top) - (mp_uint_t)&regs) / sizeof(mp_uint_t));
#ifndef _WIN32
mp_unix_mark_exec(); mp_unix_mark_exec();
#endif
gc_collect_end(); gc_collect_end();
//printf("-----\n"); //printf("-----\n");
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment