aboutsummaryrefslogtreecommitdiff
path: root/lib/libvmmapi/internal.h
blob: 142026e763454ff92874ae78785e6aa4f5ae9040 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/*-
 * SPDX-License-Identifier: BSD-2-Clause
 *
 * Copyright (c) 2022 John Baldwin <jhb@FreeBSD.org>
 */

#ifndef __VMMAPI_INTERNAL_H__
#define	__VMMAPI_INTERNAL_H__

struct vmctx;

struct vcpu {
	struct vmctx *ctx;
	int vcpuid;
};

#endif /* !__VMMAPI_INTERNAL_H__ */