blob: f8d1a7c90e69b911c23825866ac326fc37ba130e [file] [log] [blame]
// Copyright 2017 The Fuchsia Authors
//
// Use of this source code is governed by a MIT-style
// license that can be found in the LICENSE file or at
// https://opensource.org/licenses/MIT
#include <arch/hypervisor.h>
#include <zircon/errors.h>
zx_status_t arch_vcpu_resume(Vcpu* vcpu, zx_port_packet_t* packet) {
return ZX_ERR_NOT_SUPPORTED;
}
zx_status_t arch_vcpu_interrupt(Vcpu* vcpu, uint32_t interrupt) {
return ZX_ERR_NOT_SUPPORTED;
}
zx_status_t arch_vcpu_read_state(const Vcpu* vcpu, uint32_t kind, void* buffer, uint32_t len) {
return ZX_ERR_NOT_SUPPORTED;
}
zx_status_t arch_vcpu_write_state(Vcpu* vcpu, uint32_t kind, const void* buffer, uint32_t len) {
return ZX_ERR_NOT_SUPPORTED;
}