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 bool exec; 15 }; 16 17 void comm__free(struct comm *comm); 18 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 19 const char *comm__str(const struct comm *comm); 20 int comm__override(struct comm *comm, const char *str, u64 timestamp, 21 bool exec); 22 23 #endif /* __PERF_COMM_H */ 24