shmparam.h 380 B

12345678910111213141516
  1. #ifndef _ASMARM_SHMPARAM_H
  2. #define _ASMARM_SHMPARAM_H
  3. /*
  4. * This should be the size of the virtually indexed cache/ways,
  5. * or page size, whichever is greater since the cache aliases
  6. * every size/ways bytes.
  7. */
  8. #define SHMLBA (4 * PAGE_SIZE) /* attach addr a multiple of this */
  9. /*
  10. * Enforce SHMLBA in shmat
  11. */
  12. #define __ARCH_FORCE_SHMLBA
  13. #endif /* _ASMARM_SHMPARAM_H */