xref: /illumos-gate/usr/src/lib/libvmmapi/common/internal.h (revision 65c22b1bd1526ff0b42b4034a7d8a3be75e6224e)
1 /*-
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2022 John Baldwin <jhb@FreeBSD.org>
5  */
6 
7 #ifndef __VMMAPI_INTERNAL_H__
8 #define	__VMMAPI_INTERNAL_H__
9 
10 struct vmctx;
11 
12 struct vcpu {
13 	struct vmctx *ctx;
14 	int vcpuid;
15 };
16 
17 #endif /* !__VMMAPI_INTERNAL_H__ */
18