X-Git-Url: http://git.liburcu.org/?a=blobdiff_plain;f=lttv%2Fmodules%2Ftext%2FprecomputeState.c;h=718dd4c54a847e00382f44eb0310ef2bdd3faded;hb=b9ce0bad7daf7c0a2333c91fdb1e35d602afe17f;hp=a6e015b55f0817e6d415cf6d06b0d543c3aa6715;hpb=8f31828398b8a4fcdb679324291132f4f0e3dce6;p=lttv.git diff --git a/lttv/modules/text/precomputeState.c b/lttv/modules/text/precomputeState.c index a6e015b5..718dd4c5 100644 --- a/lttv/modules/text/precomputeState.c +++ b/lttv/modules/text/precomputeState.c @@ -13,8 +13,8 @@ * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software - * Foundation, Inc., 59 Temple Place - Suite 330, Boston, - * MA 02111-1307, USA. + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, + * MA 02110-1301, USA. */ /* The text dump facility needs to print headers before the trace set and @@ -40,10 +40,6 @@ #include static gboolean - a_field_names, - a_state, - a_cpu_stats, - a_process_stats, a_raw; static char @@ -91,7 +87,6 @@ static gboolean write_traceset_header(void *hook_data, void *call_data) static gboolean write_traceset_footer(void *hook_data, void *call_data) { - LttvTracesetContext *tc = (LttvTracesetContext *)call_data; GQuark q; const gchar *string; @@ -149,7 +144,6 @@ static gboolean write_trace_header(void *hook_data, void *call_data) static gboolean write_trace_footer(void *hook_data, void *call_data) { - LttvTraceContext *tc = (LttvTraceContext *)call_data; if(a_raw) { @@ -165,27 +159,17 @@ static int for_each_event(void *hook_data, void *call_data) { guint *event_count = (guint*)hook_data; - LttvIAttribute *attributes = LTTV_IATTRIBUTE(lttv_global_attributes()); - LttvTracefileContext *tfc = (LttvTracefileContext *)call_data; LttvTracefileState *tfs = (LttvTracefileState *)call_data; - LttEvent *e; - - LttvAttributeValue value_filter; - /* Only save at LTTV_STATE_SAVE_INTERVAL */ if(likely((*event_count)++ < LTTV_STATE_SAVE_INTERVAL)) return FALSE; else *event_count = 0; - guint cpu = tfs->cpu; LttvTraceState *ts = (LttvTraceState*)tfc->t_context; - LttvProcessState *process = ts->running_process[cpu]; - - e = ltt_tracefile_get_event(tfc->tf); if(a_raw) { lttv_state_write_raw(ts, tfs->parent.timestamp, a_file);