Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / tools / perf / util / comm.h
diff --git a/kernel/tools/perf/util/comm.h b/kernel/tools/perf/util/comm.h
new file mode 100644 (file)
index 0000000..71c9c39
--- /dev/null
@@ -0,0 +1,27 @@
+#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 */