All checks were successful
Build documentation / build-and-deploy (push) Successful in 21s
14 lines
264 B
C
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
|