https://jxself.org/git/linux-libre.git
Raw File
Tip revision: 93508095627a120c5500f6070949572a709fd34f authored by Jason Self on 12 December 2013, 06:38:12 UTC
Linux-libre 3.12.5-gnu
Tip revision: 9350809
op_counter.h
/*
 *   Copyright IBM Corp. 2011
 *   Author(s): Andreas Krebbel (krebbel@linux.vnet.ibm.com)
 *
 * @remark Copyright 2011 OProfile authors
 */

#ifndef OP_COUNTER_H
#define OP_COUNTER_H

struct op_counter_config {
	/* `enabled' maps to the hwsampler_file variable.  */
	/* `count' maps to the oprofile_hw_interval variable.  */
	/* `event' and `unit_mask' are unused. */
	unsigned long kernel;
	unsigned long user;
};

extern struct op_counter_config counter_config;

#endif /* OP_COUNTER_H */
back to top