[PATCH] D88666: DirectoryWatcher: add an implementation for Windows
Adrian McCarthy via Phabricator via cfe-commits
cfe-commits at lists.llvm.org
Fri Oct 9 08:57:15 PDT 2020
amccarth accepted this revision.
amccarth added a comment.
This revision is now accepted and ready to land.
LGTM. Thanks for extending this functionality to Windows!
================
Comment at: clang/lib/DirectoryWatcher/windows/DirectoryWatcher-windows.cpp:15
+#include "llvm/Support/Windows/WindowsSupport.h"
#include <atomic>
#include <condition_variable>
----------------
I don't see a reason to include `<atomic>` here.
================
Comment at: clang/lib/DirectoryWatcher/windows/DirectoryWatcher-windows.cpp:77
+ void WatcherThreadProc(HANDLE DirectoryHandle);
+ void NotifierThreadProc(bool WaitForInitialSync);
};
----------------
I like the name change from HandlerThread to NotifierThread. Thanks!
CHANGES SINCE LAST ACTION
https://reviews.llvm.org/D88666/new/
https://reviews.llvm.org/D88666
More information about the cfe-commits
mailing list