aboutsummaryrefslogtreecommitdiff
path: root/src/arch/x86/lib.h
blob: e6a74f34a3b37bcb2435d14d68f40cced532aedc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* SPDX-License-Identifier: MIT */

#ifndef __INTERNAL__LIBURING_LIB_H
	#error "This file should be included from src/lib.h (liburing)"
#endif

#ifndef LIBURING_ARCH_X86_LIB_H
#define LIBURING_ARCH_X86_LIB_H

static inline long get_page_size(void)
{
	return 4096;
}

#endif /* #ifndef LIBURING_ARCH_X86_LIB_H */