aboutsummaryrefslogtreecommitdiffstats
path: root/trace-cmd.h
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2009-11-25 17:53:05 -0500
committerSteven Rostedt <rostedt@goodmis.org>2009-11-25 17:54:56 -0500
commit59f0943f5b879980f8351fb6f11c07dfb9262a27 (patch)
treeea0d7349135efc79602bc0e6af9a38c6e4fa40d6 /trace-cmd.h
parent1806a49845e48a3e5f5ffb33d549bdefa2c1190b (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.h3
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
4extern int input_fd; 6extern int input_fd;
5extern const char *input_file; 7extern 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
13void usage(char **argv);
14int read_trace_header(void); 15int read_trace_header(void);
15int read_trace_files(void); 16int read_trace_files(void);
16 17