cregit-Linux how code gets into the kernel

Release 4.14 tools/perf/util/comm.h

Directory: tools/perf/util
/* SPDX-License-Identifier: GPL-2.0 */
#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

PersonTokensPropCommitsCommitProp
Frédéric Weisbecker7466.07%233.33%
Adrian Hunter2118.75%233.33%
Namhyung Kim1614.29%116.67%
Greg Kroah-Hartman10.89%116.67%
Total112100.00%6100.00%
Directory: tools/perf/util
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.