cregit-Linux how code gets into the kernel

Release 4.10 tools/perf/util/values.h

Directory: tools/perf/util
#ifndef __PERF_VALUES_H

#define __PERF_VALUES_H

#include <linux/types.h>


struct perf_read_values {
	
int threads;
	
int threads_max;
	

u32 *pid, *tid;
	
int counters;
	
int counters_max;
	
u64 *counterrawid;
	
char **countername;
	
u64 **value;
};

int perf_read_values_init(struct perf_read_values *values);
void perf_read_values_destroy(struct perf_read_values *values);

int perf_read_values_add_value(struct perf_read_values *values,
				u32 pid, u32 tid,
				u64 rawid, const char *name, u64 value);

void perf_read_values_display(FILE *fp, struct perf_read_values *values,
			      int raw);

#endif /* __PERF_VALUES_H */

Overall Contributors

PersonTokensPropCommitsCommitProp
brice goglinbrice goglin10393.64%233.33%
john kacurjohn kacur32.73%116.67%
arnaldo carvalho de meloarnaldo carvalho de melo21.82%116.67%
ingo molnaringo molnar10.91%116.67%
borislav petkovborislav petkov10.91%116.67%
Total110100.00%6100.00%
Directory: tools/perf/util
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.