mman.h 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* $Id: mman.h,v 1.9 2000/03/15 02:44:23 davem Exp $ */
  2. #ifndef __SPARC_MMAN_H__
  3. #define __SPARC_MMAN_H__
  4. #include <asm-generic/mman.h>
  5. /* SunOS'ified... */
  6. #define MAP_RENAME MAP_ANONYMOUS /* In SunOS terminology */
  7. #define MAP_NORESERVE 0x40 /* don't reserve swap pages */
  8. #define MAP_INHERIT 0x80 /* SunOS doesn't do this, but... */
  9. #define MAP_LOCKED 0x100 /* lock the mapping */
  10. #define _MAP_NEW 0x80000000 /* Binary compatibility is fun... */
  11. #define MAP_GROWSDOWN 0x0200 /* stack-like segment */
  12. #define MAP_DENYWRITE 0x0800 /* ETXTBSY */
  13. #define MAP_EXECUTABLE 0x1000 /* mark it as an executable */
  14. #define MCL_CURRENT 0x2000 /* lock all currently mapped pages */
  15. #define MCL_FUTURE 0x4000 /* lock all additions to address space */
  16. #define MAP_POPULATE 0x8000 /* populate (prefault) pagetables */
  17. #define MAP_NONBLOCK 0x10000 /* do not block on IO */
  18. /* XXX Need to add flags to SunOS's mctl, mlockall, and madvise system
  19. * XXX calls.
  20. */
  21. /* SunOS sys_mctl() stuff... */
  22. #define MC_SYNC 1 /* Sync pages in memory with storage (usu. a file) */
  23. #define MC_LOCK 2 /* Lock pages into core ram, do not allow swapping of them */
  24. #define MC_UNLOCK 3 /* Unlock pages locked via previous mctl() with MC_LOCK arg */
  25. #define MC_LOCKAS 5 /* Lock an entire address space of the calling process */
  26. #define MC_UNLOCKAS 6 /* Unlock entire address space of calling process */
  27. #define MADV_FREE 0x5 /* (Solaris) contents can be freed */
  28. #ifdef __KERNEL__
  29. #ifndef __ASSEMBLY__
  30. #define arch_mmap_check sparc_mmap_check
  31. int sparc_mmap_check(unsigned long addr, unsigned long len,
  32. unsigned long flags);
  33. #endif
  34. #endif
  35. #endif /* __SPARC_MMAN_H__ */