Merge pull request #62 from vibe-d/fix_winapi_watcher_shutdown
Fix cleanup code for directory watchers in the WinAPI driver.
This commit is contained in:
commit
0044946413
|
@ -82,7 +82,7 @@ final class WinAPIEventDriverWatchers : EventDriverWatchers {
|
||||||
catch (Exception e) assert(false, "Freeing directory watcher buffer failed.");
|
catch (Exception e) assert(false, "Freeing directory watcher buffer failed.");
|
||||||
} ();
|
} ();
|
||||||
slot.watcher.buffer = null;
|
slot.watcher.buffer = null;
|
||||||
core.discardEvents(&slot.watcher.overlapped, &slot.file.write.overlapped);
|
core.discardEvents(&slot.watcher.overlapped);
|
||||||
core.freeSlot(handle);
|
core.freeSlot(handle);
|
||||||
}))
|
}))
|
||||||
{
|
{
|
||||||
|
@ -159,10 +159,13 @@ final class WinAPIEventDriverWatchers : EventDriverWatchers {
|
||||||
catch (Exception e) {} // FIXME: can happen if the base path is relative and the CWD has changed
|
catch (Exception e) {} // FIXME: can happen if the base path is relative and the CWD has changed
|
||||||
if (ch.kind != FileChangeKind.modified || !ch.isDirectory)
|
if (ch.kind != FileChangeKind.modified || !ch.isDirectory)
|
||||||
slot.callback(id, ch);
|
slot.callback(id, ch);
|
||||||
if (fni.NextEntryOffset == 0) break;
|
if (fni.NextEntryOffset == 0 || !slot.callback) break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (slot.callback)
|
||||||
triggerRead(handle, *slot);
|
triggerRead(handle, *slot);
|
||||||
|
else if (gslot.refCount == 1)
|
||||||
|
doReleaseRef(handle);
|
||||||
}
|
}
|
||||||
|
|
||||||
private static bool triggerRead(HANDLE handle, ref WatcherSlot slot)
|
private static bool triggerRead(HANDLE handle, ref WatcherSlot slot)
|
||||||
|
|
Loading…
Reference in a new issue