pmc_mdep.h revision 202175
1/*-
2 * This file is in the public domain.
3 *
4 *	from: src/sys/alpha/include/pmc_mdep.h,v 1.2 2005/06/09 19:45:06 jkoshy
5 * $FreeBSD: head/sys/mips/include/pmc_mdep.h 202175 2010-01-12 21:36:08Z imp $
6 */
7
8#ifndef _MACHINE_PMC_MDEP_H_
9#define	_MACHINE_PMC_MDEP_H_
10
11union pmc_md_op_pmcallocate {
12	uint64_t	__pad[4];
13};
14
15/* Logging */
16#define	PMCLOG_READADDR		PMCLOG_READ64
17#define	PMCLOG_EMITADDR		PMCLOG_EMIT64
18
19#if	_KERNEL
20union pmc_md_pmc {
21};
22
23#endif
24#endif /* !_MACHINE_PMC_MDEP_H_ */
25