add support for hypercalls

This commit is contained in:
Alex Zenla
2024-01-08 20:45:16 -08:00
parent 47b924d618
commit faf8027590
5 changed files with 158 additions and 1 deletions

16
xencall/Cargo.toml Normal file
View File

@ -0,0 +1,16 @@
[package]
name = "xencall"
version = "0.0.1"
edition = "2021"
resolver = "2"
[lib]
path = "src/lib.rs"
[dependencies.nix]
version = "0.27.1"
features = ["ioctl"]
[[example]]
name = "xencall-simple"
path = "examples/simple.rs"