Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/usr.sbin/bhyve/aarch64/bhyve_machdep.h
111351 views
1
/*
2
* Copyright (c) 2025 Arm Ltd
3
*
4
* SPDX-License-Identifier: BSD-2-Clause
5
*/
6
7
#ifndef _BHYVE_MACHDEP_H_
8
#define _BHYVE_MACHDEP_H_
9
10
extern uint64_t *cpu_to_mpidr;
11
extern cpuset_t running_cpumask;
12
13
#endif /* _BHYVE_MACHDEP_H_ */
14
15