mmap-util.h revision 139ad5fc705d9c09380f7130e557f691311b0e25
9b2bd54c98edb185a3985410367754ab33217362bnicholes#if !defined (MREMAP_MAYMOVE) && !defined (HAVE_LINUX_MREMAP)
9b2bd54c98edb185a3985410367754ab33217362bnicholesint madvise(void *start, size_t length, int advice);
9b2bd54c98edb185a3985410367754ab33217362bnicholes/* for allocating anonymous mmap()s, with portable mremap(). these must not
9b2bd54c98edb185a3985410367754ab33217362bnicholes be mixed with any standard mmap calls. */
9b2bd54c98edb185a3985410367754ab33217362bnicholesvoid *mremap_anon(void *old_address, size_t old_size, size_t new_size,
9b2bd54c98edb185a3985410367754ab33217362bnicholes unsigned long flags);