perf probe: Move ftrace probe-event operations to probe-file.c
[linux-2.6/btrfs-unstable.git] / tools / perf / util / probe-file.h
blobada94a242a17c80edb8f53c82f31145b70993653
1 #ifndef __PROBE_FILE_H
2 #define __PROBE_FILE_H
4 #include "strlist.h"
5 #include "strfilter.h"
6 #include "probe-event.h"
8 #define PF_FL_UPROBE 1
9 #define PF_FL_RW 2
11 int probe_file__open(int flag);
12 int probe_file__open_both(int *kfd, int *ufd, int flag);
13 struct strlist *probe_file__get_namelist(int fd);
14 struct strlist *probe_file__get_rawlist(int fd);
15 int probe_file__add_event(int fd, struct probe_trace_event *tev);
16 int probe_file__del_events(int fd, struct strfilter *filter);
18 #endif