xref: /freebsd/sys/powerpc/include/pmc_mdep.h (revision f0a75d274af375d15b97b830966b99a02b7db911)
1 /*-
2  * This file is in the public domain.
3  *
4  * $FreeBSD$
5  */
6 
7 #ifndef _MACHINE_PMC_MDEP_H_
8 #define	_MACHINE_PMC_MDEP_H_
9 
10 union pmc_md_op_pmcallocate {
11 	uint64_t		__pad[4];
12 };
13 
14 /* Logging */
15 #define	PMCLOG_READADDR		PMCLOG_READ32
16 #define	PMCLOG_EMITADDR		PMCLOG_EMIT32
17 
18 #if	_KERNEL
19 
20 union pmc_md_pmc {
21 };
22 
23 #endif
24 
25 #endif /* !_MACHINE_PMC_MDEP_H_ */
26