1234567891011121314151617181920212223242526272829303132 |
- #ifndef _UCLIBC_PAGE_H
- #define _UCLIBC_PAGE_H
- #define PAGE_SHIFT (14)
- #ifndef __ASSEMBLY__
- #define PAGE_SIZE (1UL << PAGE_SHIFT)
- #else
- #define PAGE_SIZE (1 << PAGE_SHIFT)
- #endif
- #define PAGE_MASK (~(PAGE_SIZE-1))
- #endif
|