diff options
Diffstat (limited to 'tools/perf/util/comm.h')
-rw-r--r-- | tools/perf/util/comm.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tools/perf/util/comm.h b/tools/perf/util/comm.h new file mode 100644 index 000000000000..7a86e5656710 --- /dev/null +++ b/tools/perf/util/comm.h | |||
@@ -0,0 +1,21 @@ | |||
1 | #ifndef __PERF_COMM_H | ||
2 | #define __PERF_COMM_H | ||
3 | |||
4 | #include "../perf.h" | ||
5 | #include <linux/rbtree.h> | ||
6 | #include <linux/list.h> | ||
7 | |||
8 | struct comm_str; | ||
9 | |||
10 | struct comm { | ||
11 | struct comm_str *comm_str; | ||
12 | u64 start; | ||
13 | struct list_head list; | ||
14 | }; | ||
15 | |||
16 | void comm__free(struct comm *comm); | ||
17 | struct comm *comm__new(const char *str, u64 timestamp); | ||
18 | const char *comm__str(const struct comm *comm); | ||
19 | void comm__override(struct comm *comm, const char *str, u64 timestamp); | ||
20 | |||
21 | #endif /* __PERF_COMM_H */ | ||