版權所有 © 2014 tutorialspoint
#include <sys/mman.h> void *mmap2(void *start, size_t length, int prot, int flags, int fd, off_t pgoffset);
void *mmap2(void *start, size_t length, int prot, int flags, int fd, off_t pgoffset);
mmap2() 自 Linux 2.3.31 起可用。它是 Linux 特定的,應避免在可移植的應用程式中使用。在 32 位系統上,mmap2() 用於實現 mmap64() 函式,該函式是 LFS(大型檔案峰會)的一部分。
getpagesize (2)
mmap (2)
mremap (2)
msync (2)
廣告