From 8cb6050b34933b956bf3f431f795d5dd25d58940 Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Wed, 28 Apr 2021 12:29:31 +0000 Subject: Fix cp/module.cc build - use posix_madvise() --- gcc/cp/module.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc index b97b1bcb2f8..fef3ed1bcd9 100644 --- a/gcc/cp/module.cc +++ b/gcc/cp/module.cc @@ -1631,7 +1631,7 @@ elf_in::defrost (const char *name) set_error (errno); else { - if (madvise (mapping, hdr.pos, MADV_RANDOM)) + if (posix_madvise (mapping, hdr.pos, MADV_RANDOM)) goto fail; /* These buffers are never NULL in this case. */ @@ -1742,7 +1742,7 @@ elf_in::begin (location_t loc) } /* We'll be hopping over this randomly. Some systems declare the first parm as char *, and other declare it as void *. */ - if (madvise (reinterpret_cast (mapping), size, MADV_RANDOM)) + if (posix_madvise (reinterpret_cast (mapping), size, MADV_RANDOM)) goto fail; hdr.buffer = (char *)mapping;