hermit/syscalls/
system.rs

1use crate::arch::mm::paging::{BasePageSize, PageSize};
2
3/// Returns the base page size, in bytes, of the current system.
4#[hermit_macro::system]
5#[unsafe(no_mangle)]
6pub extern "C" fn sys_getpagesize() -> i32 {
7	BasePageSize::SIZE.try_into().unwrap()
8}