John Kacur | e74328d | 2009-11-24 15:35:01 +0100 | [diff] [blame^] | 1 | #ifndef __PROCESS_EVENT_H |
| 2 | #define __PROCESS_EVENT_H |
| 3 | |
| 4 | #include "../builtin.h" |
| 5 | #include "util.h" |
| 6 | |
| 7 | #include "color.h" |
| 8 | #include <linux/list.h> |
| 9 | #include "cache.h" |
| 10 | #include <linux/rbtree.h> |
| 11 | #include "symbol.h" |
| 12 | #include "string.h" |
| 13 | |
| 14 | #include "../perf.h" |
| 15 | #include "debug.h" |
| 16 | |
| 17 | #include "parse-options.h" |
| 18 | #include "parse-events.h" |
| 19 | |
| 20 | #include "thread.h" |
| 21 | #include "sort.h" |
| 22 | #include "hist.h" |
| 23 | |
| 24 | extern char *cwd; |
| 25 | extern int cwdlen; |
| 26 | extern int process_mmap_event(event_t *, unsigned long, unsigned long); |
| 27 | extern int process_comm_event(event_t *, unsigned long , unsigned long); |
| 28 | |
| 29 | #endif /* __PROCESS_H */ |