diff options
author | Steven Rostedt <srostedt@redhat.com> | 2009-11-25 21:51:28 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-11-25 21:51:28 -0500 |
commit | 4d03d560ff1913386f3b2f020a41751e2b7bcb0f (patch) | |
tree | 19d38eec243960261f17d04a5c8060086b1c0dd9 /Makefile | |
parent | 59f0943f5b879980f8351fb6f11c07dfb9262a27 (diff) |
Move most read functions from trace-read.c to new trace-input.c
The trace-input.c file belongs to the libtracecmd library. Move the
functions from trace-read that will be used as an interface for
the library.
Note, this commit is a basic move. Only some changing from static
to global was done to some functions and variables to keep the code
working. But this is a transition commit. This shows the move.
The next commits will show the changes to these functions to make
the library API more practical.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -35,7 +35,7 @@ libparsevent.so: $(PEVENT_LIB_OBJS) | |||
35 | libparsevent.a: $(PEVENT_LIB_OBJS) | 35 | libparsevent.a: $(PEVENT_LIB_OBJS) |
36 | $(RM) $@; $(AR) rcs $@ $^ | 36 | $(RM) $@; $(AR) rcs $@ $^ |
37 | 37 | ||
38 | TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o | 38 | TCMD_LIB_OBJS = $(PEVENT_LIB_OBJS) trace-util.o trace-input.o |
39 | 39 | ||
40 | libtracecmd.a: $(TCMD_LIB_OBJS) | 40 | libtracecmd.a: $(TCMD_LIB_OBJS) |
41 | $(RM) $@; $(AR) rcs $@ $^ | 41 | $(RM) $@; $(AR) rcs $@ $^ |