mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-08 18:30:18 +00:00
Add prototype for remap_file_pages.
This commit is contained in:
parent
a49f57629f
commit
0ddc17ba4b
@ -1,5 +1,5 @@
|
|||||||
/* Definitions for BSD-style memory management.
|
/* Definitions for BSD-style memory management.
|
||||||
Copyright (C) 1994-1999, 2000 Free Software Foundation, Inc.
|
Copyright (C) 1994-1999, 2000, 2003 Free Software Foundation, Inc.
|
||||||
This file is part of the GNU C Library.
|
This file is part of the GNU C Library.
|
||||||
|
|
||||||
The GNU C Library is free software; you can redistribute it and/or
|
The GNU C Library is free software; you can redistribute it and/or
|
||||||
@ -124,7 +124,13 @@ extern void *mremap (void *__addr, size_t __old_len, size_t __new_len,
|
|||||||
The status is returned in a vector of bytes. The least significant
|
The status is returned in a vector of bytes. The least significant
|
||||||
bit of each byte is 1 if the referenced page is in memory, otherwise
|
bit of each byte is 1 if the referenced page is in memory, otherwise
|
||||||
it is zero. */
|
it is zero. */
|
||||||
extern int mincore (void *__start, size_t __len, unsigned char *__vec);
|
extern int mincore (void *__start, size_t __len, unsigned char *__vec)
|
||||||
|
__THROW;
|
||||||
|
|
||||||
|
/* Remap arbitrary pages of a shared backing store within an existing
|
||||||
|
VMA. */
|
||||||
|
extern int remap_file_pages (void *__start, size_t __size, int __prot,
|
||||||
|
size_t __pgoff, int __flags) __THROW;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user