-
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New page table entry (PTE) flags abstraction for
x86_64
and aarch64
- Loading branch information
1 parent
0e049c4
commit ba4190c
Showing
6 changed files
with
505 additions
and
485 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,10 @@ | ||
[package] | ||
name = "pte_flags" | ||
authors = ["Nathan Royer <[email protected]>"] | ||
description = "The flags for page table entries/slots." | ||
authors = ["Nathan Royer <[email protected]>", "Kevin Boos <[email protected]"] | ||
description = "The bit flags for page table entries on x86_64 and aarch64." | ||
version = "0.1.0" | ||
edition = "2021" | ||
|
||
[dependencies] | ||
cfg-if = "1.0.0" | ||
bitflags = "1.3.2" | ||
|
||
[lib] | ||
path = "lib.rs" | ||
crate-type = ["rlib"] |
Oops, something went wrong.