1 /* SPDX-License-Identifier: GPL-2.0 */
6 #include <linux/rbtree.h>
7 #include <linux/list.h>
12 struct comm_str *comm_str;
14 struct list_head list;
16 union { /* Tool specific area */
22 void comm__free(struct comm *comm);
23 struct comm *comm__new(const char *str, u64 timestamp, bool exec);
24 const char *comm__str(const struct comm *comm);
25 int comm__override(struct comm *comm, const char *str, u64 timestamp,
28 #endif /* __PERF_COMM_H */