diff options
author | Bert Belder <bertbelder@gmail.com> | 2010-11-25 01:13:23 +0100 |
---|---|---|
committer | Bert Belder <bertbelder@gmail.com> | 2010-12-20 23:50:37 +0100 |
commit | 81b26dc55589fb6a11b9076f73597bc5e9939344 (patch) | |
tree | 6087f03c75738d5967d612a152e0fdb915d02d18 /src/node_stat_watcher.cc | |
parent | b4510d57dc7b36d8384d6653d84f034001051909 (diff) | |
download | node-new-81b26dc55589fb6a11b9076f73597bc5e9939344.tar.gz |
Stat watchers don't work on windows yet
Diffstat (limited to 'src/node_stat_watcher.cc')
-rw-r--r-- | src/node_stat_watcher.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/node_stat_watcher.cc b/src/node_stat_watcher.cc index bbc4fdfbd4..5173f1aee3 100644 --- a/src/node_stat_watcher.cc +++ b/src/node_stat_watcher.cc @@ -1,3 +1,5 @@ +#ifdef __POSIX__ + // Copyright 2009 Ryan Dahl <ry@tinyclouds.org> #include <node_stat_watcher.h> @@ -111,3 +113,5 @@ void StatWatcher::Stop () { } // namespace node + +#endif // __POSIX__ |