mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	There we don't need rbtree, only in comm.c, also ditch perf.h, not needed at all. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Link: https://lkml.kernel.org/n/tip-vr1jnwwujh99skrgldtimpmu@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
		
			
				
	
	
		
			28 lines
		
	
	
	
		
			599 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
	
		
			599 B
		
	
	
	
		
			C
		
	
	
	
	
	
/* SPDX-License-Identifier: GPL-2.0 */
 | 
						|
#ifndef __PERF_COMM_H
 | 
						|
#define __PERF_COMM_H
 | 
						|
 | 
						|
#include <linux/list.h>
 | 
						|
#include <linux/types.h>
 | 
						|
#include <stdbool.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 */
 |