X-Git-Url: http://git.lttng.org./?a=blobdiff_plain;f=ltt%2Fbranches%2Fpoly%2Flttv%2Flttv%2Fstate.h;h=1c20095f6780cc3f2cf239d2c3ea5ff0f092aa1c;hb=7df20ca43b06343b299d2a79512a44441f148f1d;hp=c97c6c15d4297b5a6b6c3618bc22183cf1231ff3;hpb=33bdc8dd862c92f8b44f685304e6bf413932c244;p=lttv.git diff --git a/ltt/branches/poly/lttv/lttv/state.h b/ltt/branches/poly/lttv/lttv/state.h index c97c6c15..1c20095f 100644 --- a/ltt/branches/poly/lttv/lttv/state.h +++ b/ltt/branches/poly/lttv/lttv/state.h @@ -238,13 +238,14 @@ lttv_state_find_process(LttvTraceState *ts, guint cpu, guint pid); LttvProcessState * lttv_state_find_process_or_create(LttvTraceState *ts, guint cpu, guint pid, - LttTime *timestamp); + const LttTime *timestamp); LttvProcessState * lttv_state_create_process(LttvTraceState *tcs, LttvProcessState *parent, guint cpu, guint pid, guint tgid, GQuark name, const LttTime *timestamp); void lttv_state_write(LttvTraceState *self, LttTime t, FILE *fp); +void lttv_state_write_raw(LttvTraceState *self, LttTime t, FILE *fp); /* The LttvTracesetState, LttvTraceState and LttvTracefileState types inherit from the corresponding Context objects defined in processTrace. */ @@ -294,6 +295,7 @@ struct _LttvTraceState { /* Array of per cpu running process */ LttvProcessState **running_process; + gboolean has_precomputed_states; }; struct _LttvTraceStateClass { @@ -344,9 +346,23 @@ static inline guint lttv_state_get_target_pid(LttvTracefileState *tfs) guint cpu = tfs->cpu; LttvProcessState *process = ts->running_process[cpu]; - if(tfs->parent.target_pid) return tfs->parent.target_pid; + if(tfs->parent.target_pid >= 0) return tfs->parent.target_pid; else return process->pid; } +#define HDR_PROCESS 0 +#define HDR_ES 1 +#define HDR_USER_STACK 2 +#define HDR_USERTRACE 3 +#define HDR_PROCESS_STATE 4 +#define HDR_CPU 5 +#define HDR_TRACEFILE 6 +#define HDR_TRACESET 7 +#define HDR_TRACE 8 +#define HDR_QUARKS 9 +#define HDR_QUARK 10 + + + #endif // STATE_H