From 70f178a4778b9cfe4eafa47027f50bc75c696d8f Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Wed, 7 Feb 2018 22:14:17 -0500 Subject: [PATCH 1/2] experimental to avoid invalid memory op on close --- simpledisplay.d | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/simpledisplay.d b/simpledisplay.d index aeb3cf3..f708f2b 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -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; } From 8bc5559cf657a6fa594fa917526340dee4e9c78e Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Thu, 8 Feb 2018 10:48:07 -0500 Subject: [PATCH 2/2] another experiment --- simpledisplay.d | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/simpledisplay.d b/simpledisplay.d index f708f2b..f3d4a8c 100644 --- a/simpledisplay.d +++ b/simpledisplay.d @@ -2331,7 +2331,7 @@ struct EventLoopImpl { int pulseFd = -1; version(linux) ep.epoll_event[16] events = void; } else version(Windows) { - static Timer pulser; // this is static so the GC doesn't try to reap it; we want to manage it ourselves + Timer pulser; HANDLE[] handles; } @@ -2469,8 +2469,10 @@ struct EventLoopImpl { } } else version(Windows) { - if(pulser !is null) + if(pulser !is null) { pulser.destroy(); + pulser = null; + } if (customEventH !is null) { CloseHandle(customEventH); customEventH = null;