1 /* SPDX-License-Identifier: MIT */ 2 3 #ifndef __INTERNAL__LIBURING_LIB_H 4 #error "This file should be included from src/lib.h (liburing)" 5 #endif 6 7 #ifndef LIBURING_ARCH_X86_LIB_H 8 #define LIBURING_ARCH_X86_LIB_H 9 get_page_size(void)10static inline long get_page_size(void) 11 { 12 return 4096; 13 } 14 15 #endif /* #ifndef LIBURING_ARCH_X86_LIB_H */ 16