a53c8fab3f
Remove the file name from the comment at top of many files. In most cases the file name was wrong anyway, so it's rather pointless. Also unify the IBM copyright statement. We did have a lot of sightly different statements and wanted to change them one after another whenever a file gets touched. However that never happened. Instead people start to take the old/"wrong" statements to use as a template for new files. So unify all of them in one go. Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
22 lines
495 B
C
22 lines
495 B
C
/*
|
|
* 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 */
|