Files
mop3/libmsl/m/mem.h
kamkow1 28aef30f77
All checks were successful
Build documentation / build-and-deploy (push) Successful in 21s
Implement proc_map () and proc_unmap () syscalls
2026-01-06 23:32:11 +01:00

14 lines
264 B
C

#ifndef _LIBMSL_M_MEM_H
#define _LIBMSL_M_MEM_H
#if defined(__x86_64__)
#define M_PROC_MAP_BASE 0x0000700000000000
#define M_PAGE_SIZE 4096
#endif
#define PM_PRESENT (1 << 0)
#define PM_RW (1 << 1)
#define PM_USER (1 << 2)
#endif // _LIBMSL_M_MEM_H