process_event.h 585 B

1234567891011121314151617181920212223242526272829
  1. #ifndef __PROCESS_EVENT_H
  2. #define __PROCESS_EVENT_H
  3. #include "../builtin.h"
  4. #include "util.h"
  5. #include "color.h"
  6. #include <linux/list.h>
  7. #include "cache.h"
  8. #include <linux/rbtree.h>
  9. #include "symbol.h"
  10. #include "string.h"
  11. #include "../perf.h"
  12. #include "debug.h"
  13. #include "parse-options.h"
  14. #include "parse-events.h"
  15. #include "thread.h"
  16. #include "sort.h"
  17. #include "hist.h"
  18. extern char *cwd;
  19. extern int cwdlen;
  20. extern int process_mmap_event(event_t *, unsigned long, unsigned long);
  21. extern int process_comm_event(event_t *, unsigned long , unsigned long);
  22. #endif /* __PROCESS_H */