From efada9537837ab2acabf669135bb824a43117b9c Mon Sep 17 00:00:00 2001 From: compudj Date: Mon, 24 Jul 2006 16:40:04 +0000 Subject: [PATCH] update compat git-svn-id: http://ltt.polymtl.ca/svn@2017 04897980-b3bd-0310-b5e0-8ef037075253 --- ltt/branches/poly/configure.in | 2 +- .../poly/doc/developer/lttng-lttv-compatibility.html | 1 + .../poly/lttv/modules/gui/detailedevents/events.c | 8 +------- 3 files changed, 3 insertions(+), 8 deletions(-) diff --git a/ltt/branches/poly/configure.in b/ltt/branches/poly/configure.in index ef7d33d4..b486f18b 100644 --- a/ltt/branches/poly/configure.in +++ b/ltt/branches/poly/configure.in @@ -23,7 +23,7 @@ AC_PREREQ(2.57) AC_INIT(FULL-PACKAGE-NAME, VERSION, BUG-REPORT-ADDRESS) #AC_WITH_LTDL # not needed ? -AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.52-24072006) +AM_INIT_AUTOMAKE(LinuxTraceToolkitViewer,0.8.53-24072006) AM_CONFIG_HEADER(config.h) AM_PROG_LIBTOOL diff --git a/ltt/branches/poly/doc/developer/lttng-lttv-compatibility.html b/ltt/branches/poly/doc/developer/lttng-lttv-compatibility.html index 7dd8a903..6a20e378 100644 --- a/ltt/branches/poly/doc/developer/lttng-lttv-compatibility.html +++ b/ltt/branches/poly/doc/developer/lttng-lttv-compatibility.html @@ -988,6 +988,7 @@ Make LTTV control flow lines thicker (Tim Bird).
0.8.50
0.8.51
0.8.52
+0.8.53
0.5.75
diff --git a/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c b/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c index 217e1abb..689930cd 100644 --- a/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c +++ b/ltt/branches/poly/lttv/modules/gui/detailedevents/events.c @@ -147,8 +147,6 @@ typedef struct _EventViewerData { guint num_events; /* Number of events processed */ - gboolean in_get_events; - } EventViewerData ; /** hook functions for update time interval, current time ... */ @@ -524,8 +522,6 @@ gui_events(LttvPluginTab *ptab) event_viewer_data, (GDestroyNotify)gui_events_free); - event_viewer_data->in_get_events = FALSE; - event_viewer_data->background_info_waiting = 0; request_background_data(event_viewer_data); @@ -1296,12 +1292,11 @@ static void get_events(double new_value, EventViewerData *event_viewer_data) guint i; gboolean seek_by_time; - if(event_viewer_data->in_get_events) return; + if(lttvwindow_preempt_count > 0) return; double value = new_value - event_viewer_data->previous_value; /* Set stop button status for foreground processing */ - event_viewer_data->in_get_events = TRUE; event_viewer_data->tab->stop_foreground = FALSE; lttvwindow_events_request_disable(); @@ -1506,7 +1501,6 @@ static void get_events(double new_value, EventViewerData *event_viewer_data) gtk_widget_get_parent_window(event_viewer_data->tree_v)); lttvwindow_events_request_enable(); - event_viewer_data->in_get_events = FALSE; return; } -- 2.34.1