5 #include <linux/rbtree.h>
6 #include <linux/list.h>
11 struct comm_str
*comm_str
;
13 struct list_head list
;
15 union { /* Tool specific area */
21 void comm__free(struct comm
*comm
);
22 struct comm
*comm__new(const char *str
, u64 timestamp
, bool exec
);
23 const char *comm__str(const struct comm
*comm
);
24 int comm__override(struct comm
*comm
, const char *str
, u64 timestamp
,
27 #endif /* __PERF_COMM_H */