rust-vmm / vmm-vcpu

7 stars 3 forks source link

Implementation of vCPU crate #2

Closed jennymankin closed 5 years ago

jennymankin commented 5 years ago

This PR is for a simple crate that provides a trait abstraction of a virtual CPU (vCPU).

Each VMM can then provide their own implementation of the vCPU trait (for example, I have a implementation of the Vcpu trait for the VcpuFd struct of rust-vmm/kvm-ioctls; when this PR is approved, I can make any last minute changes/tests to that POC and put it up for PR as well).

Issue/design here