shm.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _M68K_SHM_H
  2. #define _M68K_SHM_H
  3. #include <linux/config.h>
  4. /* format of page table entries that correspond to shared memory pages
  5.    currently out in swap space (see also mm/swap.c):
  6.    bits 0-1 (PAGE_PRESENT) is  = 0
  7.    bits 8..2 (SWP_TYPE) are = SHM_SWP_TYPE
  8.    bits 31..9 are used like this:
  9.    bits 15..9 (SHM_ID) the id of the shared memory segment
  10.    bits 30..16 (SHM_IDX) the index of the page within the shared memory segment
  11.                     (actually only bits 25..16 get used since SHMMAX is so low)
  12.    bit 31 (SHM_READ_ONLY) flag whether the page belongs to a read-only attach
  13. */
  14. /* on the m68k both bits 0 and 1 must be zero */
  15. /* format on the sun3 is similar, but bits 30, 31 are set to zero and all
  16.    others are reduced by 2. --m */
  17. #ifndef CONFIG_SUN3
  18. #define SHM_ID_SHIFT 9
  19. #else
  20. #define SHM_ID_SHIFT 7
  21. #endif
  22. #define _SHM_ID_BITS 7
  23. #define SHM_ID_MASK ((1<<_SHM_ID_BITS)-1)
  24. #define SHM_IDX_SHIFT (SHM_ID_SHIFT+_SHM_ID_BITS)
  25. #define _SHM_IDX_BITS 15
  26. #define SHM_IDX_MASK ((1<<_SHM_IDX_BITS)-1)
  27. #endif /* _M68K_SHM_H */