diff options
author | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-12-11 22:06:22 +0100 |
---|---|---|
committer | Johannes Stoelp <johannes.stoelp@gmail.com> | 2021-12-11 22:06:22 +0100 |
commit | 3b9f34189259c94a8fbd26bc16cd28d167282e35 (patch) | |
tree | f4086f3efb98dc6059000782eed094a7e8bda2e7 /examples/long_mode.rs | |
parent | 58be7ebbf86c4185276250867eb74a6dd19aaca6 (diff) | |
download | mini-kvm-rs-3b9f34189259c94a8fbd26bc16cd28d167282e35.tar.gz mini-kvm-rs-3b9f34189259c94a8fbd26bc16cd28d167282e35.zip |
vcpu: allow to enable/disable guest single stepping (debug)
Diffstat (limited to 'examples/long_mode.rs')
-rw-r--r-- | examples/long_mode.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/long_mode.rs b/examples/long_mode.rs index 06af791..5969a48 100644 --- a/examples/long_mode.rs +++ b/examples/long_mode.rs @@ -181,6 +181,7 @@ fn main() -> std::io::Result<()> { data ); } + KvmExit::Debug(_pc) => {} }; } |