diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-11-25 17:53:05 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-11-25 17:54:56 -0500 |
commit | 59f0943f5b879980f8351fb6f11c07dfb9262a27 (patch) | |
tree | ea0d7349135efc79602bc0e6af9a38c6e4fa40d6 /trace-cmd.h | |
parent | 1806a49845e48a3e5f5ffb33d549bdefa2c1190b (diff) |
Start of creating libtracecmd.a library
Have libtracecmd.a contain libparevent.a and include trace-util.c.
Create a trace-local.h file to be used by the trace-cmd exec itself.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'trace-cmd.h')
-rw-r--r-- | trace-cmd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/trace-cmd.h b/trace-cmd.h index 1a33d04..667ab3e 100644 --- a/trace-cmd.h +++ b/trace-cmd.h | |||
@@ -1,6 +1,8 @@ | |||
1 | #ifndef _TRACE_CMD_H | 1 | #ifndef _TRACE_CMD_H |
2 | #define _TRACE_CMD_H | 2 | #define _TRACE_CMD_H |
3 | 3 | ||
4 | #include "parse-events.h" | ||
5 | |||
4 | extern int input_fd; | 6 | extern int input_fd; |
5 | extern const char *input_file; | 7 | extern const char *input_file; |
6 | 8 | ||
@@ -10,7 +12,6 @@ extern unsigned int page_size; | |||
10 | #define PAGE_MASK (page_size - 1) | 12 | #define PAGE_MASK (page_size - 1) |
11 | #endif | 13 | #endif |
12 | 14 | ||
13 | void usage(char **argv); | ||
14 | int read_trace_header(void); | 15 | int read_trace_header(void); |
15 | int read_trace_files(void); | 16 | int read_trace_files(void); |
16 | 17 | ||