update script
[lttv.git] / ltt / branches / poly / ltt / event.c
index 17e9688a14ce5d82a00704dd0bb45bfd8414ece1..1483102734e22ceb358282b138b5309263ebaeb4 100644 (file)
@@ -170,6 +170,16 @@ void ltt_event_position_get(LttEventPosition *ep, LttTracefile **tf,
 }
 
 
+void ltt_event_position_set(LttEventPosition *ep, LttTracefile *tf,
+        guint block, guint offset, guint64 tsc)
+{
+  ep->tracefile = tf;
+  ep->block = block;
+  ep->offset = offset;
+  ep->tsc = tsc;
+}
+
+
 /*****************************************************************************
  *Function name
  *    ltt_event_position : get the event's position
This page took 0.022529 seconds and 4 git commands to generate.