xref: /freebsd/sys/arm64/linux/linux_emul_md.h (revision bdb561843e865eaa5bbdc5394ed9d9c91136240c)
1 /*
2  * SPDX-License-Identifier: BSD-2-Clause
3  *
4  * Copyright (c) 2026 Devin Teske <dteske@FreeBSD.org>
5  */
6 
7 #ifndef _ARM64_LINUX_EMUL_MD_H_
8 #define	_ARM64_LINUX_EMUL_MD_H_
9 
10 /*
11  * Machine-dependent part of the Linux process emuldata, embedded in
12  * struct linux_pemuldata as pem_md.
13  */
14 struct linux_pemuldata_md {
15 	int	md_dummy;		/* no machine-dependent state yet */
16 };
17 
18 #endif	/* !_ARM64_LINUX_EMUL_MD_H_ */
19