Add missing #includes for FreeBSD.
authorZachary Turner <zturner@google.com>
Fri, 3 Mar 2017 18:38:22 +0000 (18:38 +0000)
committerZachary Turner <zturner@google.com>
Fri, 3 Mar 2017 18:38:22 +0000 (18:38 +0000)
llvm-svn: 296902

llvm/lib/Support/Unix/Threading.inc

index 06f4a2d..2bcf8e5 100644 (file)
 #include <pthread.h>
 
 #if defined(__FreeBSD__)
-#include <pthread_np.h>
+#include <pthread_np.h> // For pthread_getthreadid_np()
+#endif
+
+#if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
+#include <errno.h>
+#include <unistd.h>
 #endif
 
 #if defined(__NetBSD__)
-#include <lwp.h>
+#include <lwp.h>  // For _lwp_self()
 #endif
 
 #if defined(__linux__)
-#include <unistd.h>
-#include <sys/syscall.h>
+#include <unistd.h> // For syscall()
+#include <sys/syscall.h>  // For syscall codes
 #endif
 
 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__)