python/hypothesis: update to 6.122.3
[oi-userland.git] / components / developer / gcc-13 / patches / 0032-Fix-cp-module.cc-build-use-posix_madvise.patch
blobe2e70a1914e3248ff0e9ecaa33b5a96db24f1562
1 From 806395b291b257d2608cc711857806379edb1e58 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 ac2fe66b080c..515faca9b2b0 100644
12 --- a/gcc/cp/module.cc
13 +++ b/gcc/cp/module.cc
14 @@ -1643,7 +1643,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 @@ -1754,7 +1754,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;