diff options
Diffstat (limited to 'tools/perf/util/thread.h')
| -rw-r--r-- | tools/perf/util/thread.h | 5 | 
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/perf/util/thread.h b/tools/perf/util/thread.h index 1dfd9ff8bdc..ee6bbcf277c 100644 --- a/tools/perf/util/thread.h +++ b/tools/perf/util/thread.h @@ -6,7 +6,10 @@  #include "symbol.h"  struct thread { -	struct rb_node		rb_node; +	union { +		struct rb_node	 rb_node; +		struct list_head node; +	};  	struct map_groups	mg;  	pid_t			pid;  	char			shortname[3];  |