[sanitizer] Define __sanitizer_clockid_t on FreeBSD
authorKostya Kortchinsky <kostyak@google.com>
Sat, 16 Dec 2017 23:01:14 +0000 (23:01 +0000)
committerKostya Kortchinsky <kostyak@google.com>
Sat, 16 Dec 2017 23:01:14 +0000 (23:01 +0000)
Summary:
https://reviews.llvm.org/D41121 broke the FreeBSD build due to that type not
being defined on FreeBSD. As far as I can tell, it is an int, but I do not have
a way to test the change.

Reviewers: alekseyshl, kparzysz

Reviewed By: kparzysz

Subscribers: kparzysz, emaste, kubamracek, krytarowski, #sanitizers, llvm-commits

Differential Revision: https://reviews.llvm.org/D41325

llvm-svn: 320931

compiler-rt/lib/sanitizer_common/sanitizer_platform_limits_posix.h

index d8b72a9..b1901fb 100644 (file)
@@ -534,7 +534,7 @@ namespace __sanitizer {
   typedef long __sanitizer_clock_t;
 #endif
 
-#if SANITIZER_LINUX
+#if SANITIZER_LINUX || SANITIZER_FREEBSD
   typedef int __sanitizer_clockid_t;
 #endif