rust/cargo-c: update to 0.10.7+cargo-0.84.0
[oi-userland.git] / components / developer / gcc-11 / patches / 0033-Fix-cp-module.cc-build-use-posix_madvise.patch
blob2ca01ba1f727f64ca709cd6b27ed031f056a6923
1 From 8cb6050b34933b956bf3f431f795d5dd25d58940 Mon Sep 17 00:00:00 2001
2 From: Andy Fiddaman <omnios@citrus-it.co.uk>
3 Date: Wed, 28 Apr 2021 12:29:31 +0000
4 Subject: Fix cp/module.cc build - use posix_madvise()
6 ---
7 gcc/cp/module.cc | 4 ++--
8 1 file changed, 2 insertions(+), 2 deletions(-)
10 diff --git a/gcc/cp/module.cc b/gcc/cp/module.cc
11 index b97b1bcb2f8..fef3ed1bcd9 100644
12 --- a/gcc/cp/module.cc
13 +++ b/gcc/cp/module.cc
14 @@ -1631,7 +1631,7 @@ elf_in::defrost (const char *name)
15 set_error (errno);
16 else
18 - if (madvise (mapping, hdr.pos, MADV_RANDOM))
19 + if (posix_madvise (mapping, hdr.pos, MADV_RANDOM))
20 goto fail;
22 /* These buffers are never NULL in this case. */
23 @@ -1742,7 +1742,7 @@ elf_in::begin (location_t loc)
25 /* We'll be hopping over this randomly. Some systems declare the
26 first parm as char *, and other declare it as void *. */
27 - if (madvise (reinterpret_cast <char *> (mapping), size, MADV_RANDOM))
28 + if (posix_madvise (reinterpret_cast <char *> (mapping), size, MADV_RANDOM))
29 goto fail;
31 hdr.buffer = (char *)mapping;