1234567891011121314151617181920212223242526272829303132333435 |
- #ifndef _UCLIBC_PAGE_H
- #define _UCLIBC_PAGE_H
- #if 0
- #define PAGE_SHIFT 16
- #define PAGE_SHIFT 14
- #endif
- #define PAGE_SHIFT 12
- #define PAGE_SIZE (1UL << PAGE_SHIFT)
- #define PAGE_MASK (~(PAGE_SIZE-1))
- #endif
|