aboutsummaryrefslogtreecommitdiff
path: root/common/errors/memory/mapping.zig
blob: 3f2421693299038b1648e864c6d6229ea65d6c2a (plain)
1
2
3
4
5
6
7
8
9
10
11
//! Memory Mapping Errors

pub const MappingError = error{
    InvalidAddress,
    AddressNotAligned,
    RegionOverlap,
    PermissionDenied,
    PageTableAllocationFailed,
    AlreadyMapped,
    NotMapped,
};