1 /* 2 * Copyright (C) 2019-2023 Intel Corporation. 3 * 4 * SPDX-License-Identifier: BSD-3-Clause 5 */ 6 7 #ifndef VM_EVENT_H 8 #define VM_EVENT_H 9 10 #include <types.h> 11 #include <acrn_common.h> 12 13 int32_t init_vm_event(struct acrn_vm *vm, uint64_t *hva); 14 int32_t send_vm_event(struct acrn_vm *vm, struct vm_event *event); 15 16 #endif /* VM_EVENT_H */ 17