experimental to avoid invalid memory op on close

This commit is contained in:
Adam D. Ruppe 2018-02-07 22:14:17 -05:00
parent 0bd953e9e5
commit 70f178a477
1 changed files with 1 additions and 1 deletions

View File

@ -2331,7 +2331,7 @@ struct EventLoopImpl {
int pulseFd = -1;
version(linux) ep.epoll_event[16] events = void;
} else version(Windows) {
Timer pulser;
static Timer pulser; // this is static so the GC doesn't try to reap it; we want to manage it ourselves
HANDLE[] handles;
}