Convince tsan that the card table isn't a problem.
Also move the #include <sys/mman.h> into "mem_map.h", since it's
currently not possible to make any use of the latter without the
former. If we care about the pollution, we should offer our own
constants as part of our API.
Change-Id: I01ec451d23c1d8afb8cb8a6660af8d9723faf5f5
diff --git a/src/mem_map.h b/src/mem_map.h
index 9da2a84..3861327 100644
--- a/src/mem_map.h
+++ b/src/mem_map.h
@@ -18,6 +18,7 @@
#define ART_SRC_MEM_MAP_H_
#include <stddef.h>
+#include <sys/mman.h> // For the PROT_* and MAP_* constants.
#include <sys/types.h>
#include "globals.h"