svn commit: trunk/uClibc/include/sys

vapier at uclibc.org vapier at uclibc.org
Wed Jun 7 14:56:50 UTC 2006


Author: vapier
Date: 2006-06-07 07:56:49 -0700 (Wed, 07 Jun 2006)
New Revision: 15313

Log:
sync with glibc

Modified:
   trunk/uClibc/include/sys/mman.h


Changeset:
Modified: trunk/uClibc/include/sys/mman.h
===================================================================
--- trunk/uClibc/include/sys/mman.h	2006-06-07 14:55:44 UTC (rev 15312)
+++ trunk/uClibc/include/sys/mman.h	2006-06-07 14:56:49 UTC (rev 15313)
@@ -119,10 +119,12 @@
 
 #ifdef __USE_MISC
 /* Remap pages mapped by the range [ADDR,ADDR+OLD_LEN) to new length
-   NEW_LEN.  If MAY_MOVE is MREMAP_MAYMOVE the returned address may
-   differ from ADDR.  */
+   NEW_LEN.  If MREMAP_MAYMOVE is set in FLAGS the returned address
+   may differ from ADDR.  If MREMAP_FIXED is set in FLAGS the function
+   takes another paramter which is a fixed address at which the block
+   resides after a successful call.  */
 extern void *mremap (void *__addr, size_t __old_len, size_t __new_len,
-		     int __may_move) __THROW;
+		     int __flags, ...) __THROW;
 
 /* mincore returns the memory residency status of the pages in the
    current process's address space specified by [start, start + len).




More information about the uClibc-cvs mailing list