[PATCH] D35553: Define OFF_T as 64-bit integer on NetBSD

Kamil Rytarowski via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Wed Jul 19 08:21:30 PDT 2017


krytarowski updated this revision to Diff 107306.
krytarowski added a comment.

Update comment


Repository:
  rL LLVM

https://reviews.llvm.org/D35553

Files:
  lib/sanitizer_common/sanitizer_internal_defs.h


Index: lib/sanitizer_common/sanitizer_internal_defs.h
===================================================================
--- lib/sanitizer_common/sanitizer_internal_defs.h
+++ lib/sanitizer_common/sanitizer_internal_defs.h
@@ -129,11 +129,8 @@
 #endif
 typedef int pid_t;
 
-// WARNING: OFF_T may be different from OS type off_t, depending on the value of
-// _FILE_OFFSET_BITS. This definition of OFF_T matches the ABI of system calls
-// like pread and mmap, as opposed to pread64 and mmap64.
-// FreeBSD, Mac and Linux/x86-64 are special.
-#if SANITIZER_FREEBSD || SANITIZER_MAC || \
+// WARNING: OFF_T may be different from OS type off_t
+#if SANITIZER_FREEBSD || SANITIZER_MAC || SANITIZER_NETBSD || \
   (SANITIZER_LINUX && defined(__x86_64__))
 typedef u64 OFF_T;
 #else


-------------- next part --------------
A non-text attachment was scrubbed...
Name: D35553.107306.patch
Type: text/x-patch
Size: 779 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-commits/attachments/20170719/802da9e3/attachment.bin>


More information about the llvm-commits mailing list