2006-09-09  Ulrich Drepper  <drepper@redhat.com>
	[BZ #3189]
	* misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
This commit is contained in:
Ulrich Drepper 2006-09-09 16:18:28 +00:00
parent 2b6a801eed
commit d26d01d19c
2 changed files with 7 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-09-09 Ulrich Drepper <drepper@redhat.com>
[BZ #3189]
* misc/sys/mman.h (remap_file_pages): Make available for _GNU_SOURCE.
2006-09-07 Jakub Jelinek <jakub@redhat.com>
[BZ #1006]

View File

@ -131,7 +131,9 @@ extern void *mremap (void *__addr, size_t __old_len, size_t __new_len,
it is zero. */
extern int mincore (void *__start, size_t __len, unsigned char *__vec)
__THROW;
#endif
#ifdef __USE_GNU
/* Remap arbitrary pages of a shared backing store within an existing
VMA. */
extern int remap_file_pages (void *__start, size_t __size, int __prot,