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

pull/1066/head
Damien George 2015-01-14 11:43:51 +00:00
rodzic d9dc6fff21
commit d95b519aa1
1 zmienionych plików z 2 dodań i 0 usunięć

Wyświetl plik

@ -131,7 +131,9 @@ void gc_collect(void) {
// GC stack (and regs because we captured them)
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));
#ifndef _WIN32
mp_unix_mark_exec();
#endif
gc_collect_end();
//printf("-----\n");