summaryrefslogtreecommitdiff
path: root/ovsdb
diff options
context:
space:
mode:
authorIlya Maximets <i.maximets@ovn.org>2022-07-13 22:38:36 +0200
committerIlya Maximets <i.maximets@ovn.org>2022-07-14 12:19:39 +0200
commit4dd68ff85b06cad468bb858ed26e5d73c4137536 (patch)
treeb6b508c805ecbf1a9b03067bd78a7c20db385af3 /ovsdb
parent3cd2cbd684e023682d04dd11d2640b53e4725790 (diff)
downloadopenvswitch-4dd68ff85b06cad468bb858ed26e5d73c4137536.tar.gz
ovsdb: Add missing ovs-thread include.
MSVC doesn't have pthread_t defined by default as other compilers, so the build fails without the header. Fixes: 3cd2cbd684e0 ("ovsdb: Prepare snapshot JSON in a separate thread.") Signed-off-by: Ilya Maximets <i.maximets@ovn.org> Acked-by: Dumitru Ceara <dceara@redhat.com>
Diffstat (limited to 'ovsdb')
-rw-r--r--ovsdb/ovsdb.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/ovsdb/ovsdb.h b/ovsdb/ovsdb.h
index 2f77821e0..d05e7c64a 100644
--- a/ovsdb/ovsdb.h
+++ b/ovsdb/ovsdb.h
@@ -21,6 +21,7 @@
#include "openvswitch/list.h"
#include "openvswitch/shash.h"
#include "openvswitch/uuid.h"
+#include "ovs-thread.h"
struct json;
struct ovsdb_log;