tracecontext.c\
traceset.c\
filter.c\
- print.c
-
-#Disabled by Mathieu Desnoyers (does not build on x86_64)
-# sync/sync_chain.c\
-# sync/sync_chain_lttv.c\
-# sync/graph_functions.c\
-# sync/data_structures.c\
-# sync/event_processing_lttng_common.c\
-# sync/event_processing_lttng_standard.c\
-# sync/event_processing_lttng_null.c\
-# sync/event_matching_broadcast.c\
-# sync/event_matching_distributor.c\
-# sync/event_matching_tcp.c\
-# sync/event_analysis_chull.c\
-# sync/event_analysis_eval.c\
-# sync/event_analysis_linreg.c
+ print.c\
+ sync/sync_chain.c\
+ sync/sync_chain_lttv.c\
+ sync/graph_functions.c\
+ sync/data_structures.c\
+ sync/event_processing_lttng_common.c\
+ sync/event_processing_lttng_standard.c\
+ sync/event_processing_lttng_null.c\
+ sync/event_matching_broadcast.c\
+ sync/event_matching_distributor.c\
+ sync/event_matching_tcp.c\
+ sync/event_analysis_chull.c\
+ sync/event_analysis_eval.c\
+ sync/event_analysis_linreg.c
lttvinclude_HEADERS = \
attribute.h\
AM_CFLAGS= $(PACKAGE_CFLAGS)
LDADD = $(M_LIBS) $(GLPK_LIBS)
-#Mathieu: does not build on x86 64, disable.
-#check_PROGRAMS = unittest
-#
-#unittest_SOURCES = \
-# data_structures.c\
-# graph_functions.c\
-# sync_chain.c\
-# sync_chain_unittest.c\
-# event_processing_text.c\
-# event_matching_broadcast.c\
-# event_matching_distributor.c\
-# event_matching_tcp.c\
-# event_analysis_chull.c\
-# event_analysis_eval.c\
-# event_analysis_linreg.c
+check_PROGRAMS = unittest
-noinst_HEADERS = \
- data_structures.h \
- event_analysis_chull.h \
- event_analysis_eval.h \
- event_analysis.h \
- event_analysis_linreg.h \
- event_matching_broadcast.h \
- event_matching_distributor.h \
- event_matching.h \
- event_matching_tcp.h \
- event_processing.h \
- event_processing_lttng_common.h \
- event_processing_lttng_null.h \
- event_processing_lttng_standard.h \
- event_processing_text.h \
- graph_functions.h \
- lookup3.h \
- sync_chain.h \
- sync_chain_lttv.h
+unittest_SOURCES = \
+ data_structures.c\
+ graph_functions.c\
+ sync_chain.c\
+ sync_chain_unittest.c\
+ event_processing_text.c\
+ event_matching_broadcast.c\
+ event_matching_distributor.c\
+ event_matching_tcp.c\
+ event_analysis_chull.c\
+ event_analysis_eval.c\
+ event_analysis_linreg.c
}
}
-
/**
* Function to set/update traceset for the viewers
* @param tab viewer's tab
LTTV_TRACESET_CONTEXT(tab->traceset_info->traceset_context);
// Perform time synchronization on the traces
- /* Mathieu Desnoyers: temporarily disable syncTraceset */
- //if (syncTraceset(tsc))
- if (0)
+ if (syncTraceset(tsc))
{
/* There is some time-dependant information that was calculated during
* context initialization. Destroy the old contexts and initialize new
LTTV_MODULE("lttvwindow", "Viewer main window", \
"Viewer with multiple windows, tabs and panes for graphical modules", \
- //init, destroy, "stats", "option", "sync")
- init, destroy, "stats", "option")
+ init, destroy, "stats", "option", "sync")
lttv_context_init(tc, traceset);
- /* Disabled by Mathieu, does not build on x86_64 */
- /* syncTraceset(tc); */
+ syncTraceset(tc);
lttv_state_add_event_hooks(tc);
if(a_stats) lttv_stats_add_event_hooks(tscs);
LTTV_MODULE("batchAnalysis", "Batch processing of a trace", \
"Run through a trace calling all the registered hooks", \
- /* init, destroy, "state", "stats", "option","textFilter", "sync") */
- init, destroy, "state", "stats", "option","textFilter")
+ init, destroy, "state", "stats", "option","textFilter", "sync")