Skip to content
Snippets Groups Projects
Commit 0eb0f5fa authored by Mattijs Janssens's avatar Mattijs Janssens
Browse files

Bug in mremap causing new Metis to crash

parent 67540322
Branches
Tags
No related merge requests found
......@@ -584,7 +584,13 @@ MAX_RELEASE_CHECK_RATE default: 255 unless not HAVE_MMAP
#endif /* MMAP_CLEARS */
#ifndef HAVE_MREMAP
#ifdef linux
#define HAVE_MREMAP 1
/*
* From http://glaros.dtc.umn.edu/flyspray/task/29
* workaround bug in mremap:
* http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=457337
*/
/* #define HAVE_MREMAP 1 */
#define HAVE_MREMAP 0
#else /* linux */
#define HAVE_MREMAP 0
#endif /* linux */
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment