Add allocator to paging unmap to free allocated entries

fmt
This commit is contained in:
Edward Dean 2021-02-25 20:30:18 +00:00
parent d2da8a55bd
commit 4b219c43d7
4 changed files with 36 additions and 46 deletions

View file

@ -92,7 +92,7 @@ fn Mock() type {
///
fn createDataElement(arg: anytype) DataElement {
return switch (@TypeOf(arg)) {
////createDataElement////
////createDataElement////
};
}
@ -107,7 +107,7 @@ fn Mock() type {
///
fn getDataElementType(comptime T: type) DataElementType {
return switch (T) {
////getDataElementType////
////getDataElementType////
};
}
@ -124,7 +124,7 @@ fn Mock() type {
///
fn getDataValue(comptime T: type, element: DataElement) T {
return switch (T) {
////getDataValue////
////getDataValue////
};
}