From 7cfb7260526af8cc8f8d416dcde0f8f8d397eb37 Mon Sep 17 00:00:00 2001 From: Rainer Orth Date: Wed, 26 Jun 2019 10:43:08 +0000 Subject: Fix sanitizer_common/sanitizer_posix_libcdep.cc compilation on Solaris 11.5 * sanitizer_common/sanitizer_posix_libcdep.cc: Cherry-pick compiler-rt revision 363778. From-SVN: r272685 --- libsanitizer/ChangeLog | 5 +++++ libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) (limited to 'libsanitizer') diff --git a/libsanitizer/ChangeLog b/libsanitizer/ChangeLog index 627d689..52c119f 100644 --- a/libsanitizer/ChangeLog +++ b/libsanitizer/ChangeLog @@ -1,3 +1,8 @@ +2019-06-26 Rainer Orth + + * sanitizer_common/sanitizer_posix_libcdep.cc: Cherry-pick + compiler-rt revision 363778. + 2019-06-18 Iain Sandoe PR libsanitizer/87880 diff --git a/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc b/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc index a0e96fa..d2fd76a 100644 --- a/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc +++ b/libsanitizer/sanitizer_common/sanitizer_posix_libcdep.cc @@ -69,7 +69,7 @@ void ReleaseMemoryPagesToOS(uptr beg, uptr end) { bool NoHugePagesInRegion(uptr addr, uptr size) { #ifdef MADV_NOHUGEPAGE // May not be defined on old systems. - return madvise((void *)addr, size, MADV_NOHUGEPAGE) == 0; + return madvise((char *)addr, size, MADV_NOHUGEPAGE) == 0; #else return true; #endif // MADV_NOHUGEPAGE @@ -77,9 +77,9 @@ bool NoHugePagesInRegion(uptr addr, uptr size) { bool DontDumpShadowMemory(uptr addr, uptr length) { #if defined(MADV_DONTDUMP) - return madvise((void *)addr, length, MADV_DONTDUMP) == 0; + return madvise((char *)addr, length, MADV_DONTDUMP) == 0; #elif defined(MADV_NOCORE) - return madvise((void *)addr, length, MADV_NOCORE) == 0; + return madvise((char *)addr, length, MADV_NOCORE) == 0; #else return true; #endif // MADV_DONTDUMP -- cgit v1.1