Merge tag 'perf-core-for-mingo-20160615' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / tools / perf / util / config.h
CommitLineData
20105ca1
TS
1#ifndef __PERF_CONFIG_H
2#define __PERF_CONFIG_H
3
4#include <stdbool.h>
5#include <linux/list.h>
6
7struct perf_config_item {
8 char *name;
9 char *value;
10 struct list_head node;
11};
12
13struct perf_config_section {
14 char *name;
15 struct list_head items;
16 struct list_head node;
17};
18
19struct perf_config_set {
20 struct list_head sections;
21};
22
23struct perf_config_set *perf_config_set__new(void);
24void perf_config_set__delete(struct perf_config_set *set);
25
26#endif /* __PERF_CONFIG_H */
This page took 0.027347 seconds and 5 git commands to generate.