From: tschwinge Date: Tue, 29 Mar 2016 21:05:07 +0000 (+0000) Subject: [Hurd, kFreeBSD] boehm-gc: Use mmap instead of brk X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=04a4d1ce0425912054b6f8db5bc15029bf87e055;p=thirdparty%2Fgcc.git [Hurd, kFreeBSD] boehm-gc: Use mmap instead of brk boehm-gc/ * configure.host: Set gc_use_mmap on *-kfreebsd-gnu* and *-gnu*. * include/private/gcconfig.h [HURD && USE_MMAP]: Define USE_MMAP_ANON. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@234534 138bc75d-0d04-0410-961f-82ee72b054a4 --- diff --git a/boehm-gc/ChangeLog b/boehm-gc/ChangeLog index c41734a3cc52..6896c67b757a 100644 --- a/boehm-gc/ChangeLog +++ b/boehm-gc/ChangeLog @@ -1,3 +1,9 @@ +2016-03-29 Samuel Thibault + + * configure.host: Set gc_use_mmap on *-kfreebsd-gnu* and *-gnu*. + * include/private/gcconfig.h [HURD && USE_MMAP]: Define + USE_MMAP_ANON. + 2016-03-16 Andreas Schwab * include/private/gcconfig.h [AARCH64] (ALIGNMENT, CPP_WORDSZ): diff --git a/boehm-gc/configure.host b/boehm-gc/configure.host index 97f4dacb6dee..229a03877b96 100644 --- a/boehm-gc/configure.host +++ b/boehm-gc/configure.host @@ -41,7 +41,7 @@ else fi case "${host}" in - *-linux*) + *-linux*|*-kfreebsd-gnu*|*-gnu*) gc_use_mmap=yes ;; esac diff --git a/boehm-gc/include/private/gcconfig.h b/boehm-gc/include/private/gcconfig.h index aa81f15b06cd..44b9d7d86c38 100644 --- a/boehm-gc/include/private/gcconfig.h +++ b/boehm-gc/include/private/gcconfig.h @@ -2137,7 +2137,7 @@ # endif # endif -#if defined(LINUX) && defined(USE_MMAP) +#if (defined(LINUX) || defined(HURD)) && defined(USE_MMAP) /* The kernel may do a somewhat better job merging mappings etc. */ /* with anonymous mappings. */ # define USE_MMAP_ANON