最終更新:2013-03-01 (金) 11:23:55 (4072d)  

sys/mman.h
Top / sys / mman.h

Memory Management Declarations

http://pubs.opengroup.org/onlinepubs/009604499/basedefs/sys/mman.h.html

関数

  • int mlock?(const void *, size_t);
  • int mlockall?(int);
  • void *mmap(void *, size_t, int, int, int, off_t?);
  • int mprotect?(void *, size_t, int);
  • int msync?(void *, size_t, int);
  • int munlock?(const void *, size_t);
  • int munlockall?(void);
  • int munmap?(void *, size_t);
  • int posix_madvise?(void *, size_t, int);
  • int posix_mem_offset?(const void *restrict, size_t, off_t? *restrict, size_t *restrict, int *restrict);
  • int posix_typed_mem_get_info?(int, struct posix_typed_mem_info *);
  • int posix_typed_mem_open?(const char *, int, int);
  • int shm_open?(const char *, int, mode_t);
  • int shm_unlink?(const char *);

関連