comm.h 496 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
#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;
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 21
int comm__override(struct comm *comm, const char *str, u64 timestamp,
		   bool exec);
22 23

#endif  /* __PERF_COMM_H */