base-hw: x86: use Vcpu_state as Vm_state

Ref #4826
This commit is contained in:
Benjamin Lamowski 2022-12-19 13:32:35 +01:00 committed by Christian Helmuth
parent 0a819d5e19
commit fa6e819f9a

View File

@ -14,6 +14,9 @@
#ifndef _INCLUDE__SPEC__PC__VM_STATE_H_
#define _INCLUDE__SPEC__PC__VM_STATE_H_
/* x86 CPU state */
#include <cpu/vcpu_state.h>
namespace Genode {
/**
@ -22,9 +25,7 @@ namespace Genode {
struct Vm_state;
}
struct Genode::Vm_state
{
};
struct Genode::Vm_state : Genode::Vcpu_state
{};
#endif /* _INCLUDE__SPEC__PC__VM_STATE_H_ */