#ifndef __PERF_COMM_H #define __PERF_COMM_H #include "../perf.h" #include <linux/rbtree.h> #include <linux/list.h> struct comm_str; struct comm { struct comm_str *comm_str; u64 start; struct list_head list; bool exec; union { /* Tool specific area */ void *priv; u64 db_id; }; }; void comm__free(struct comm *comm); struct comm *comm__new(const char *str, u64 timestamp, bool exec); const char *comm__str(const struct comm *comm); int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec); #endif /* __PERF_COMM_H */Overall Contributors
Person | Tokens | Prop | Commits | CommitProp | |
frederic weisbecker | frederic weisbecker | 74 | 66.67% | 2 | 40.00% |
adrian hunter | adrian hunter | 21 | 18.92% | 2 | 40.00% |
namhyung kim | namhyung kim | 16 | 14.41% | 1 | 20.00% |
Total | 111 | 100.00% | 5 | 100.00% |