ofproto: Fix potential leak during flow mods.
[sliver-openvswitch.git] / lib / latch.h
index 0b6e8a3..52829b1 100644 (file)
 #include "util.h"
 
 struct latch {
+#ifndef _WIN32
     int fds[2];
+#else
+    HANDLE wevent;
+    bool is_set;
+#endif
 };
 
 void latch_init(struct latch *);