datapath: Hash and compare only the part of sw_flow_key actually used.
[openvswitch] / lib / timer.h
index d2bfd86b08c45b3ed7758c300b25788c0184fdd3..2197f934869073814705a3a7e9bd20b40362d231 100644 (file)
 #include <stdbool.h>
 
 #include "timeval.h"
+#include "util.h"
 
 struct timer {
     long long int t;
 };
 
 long long int timer_msecs_until_expired(const struct timer *);
-void timer_wait(const struct timer *);
+void timer_wait(const struct timer *, const char *where);
+#define timer_wait(timer) timer_wait(timer, SOURCE_LOCATOR)
 
 /* Causes 'timer' to expire when 'duration' milliseconds have passed.
  *