create directories branches, tags, trunk
[lttv.git] / ltt / branches / poly / ltt / event.h
index 3bb05a90b1ed0a9664785b3525369460b1a98815..2574a271b04f653de53e63c92fb97ea8abc7cc89 100644 (file)
@@ -1,13 +1,14 @@
 #ifndef _LTT_EVENT_H
 #define _LTT_EVENT_H
 
-#include <ltt/time.h>
 #include <glib.h>
 #include <stdint.h>
 #include <sys/types.h>
-#include <ltt/ltt.h>
 #include <endian.h>
-#include <ltt/markers.h>
+#include <ltt/ltt.h>
+#include <ltt/time.h>
+
+struct marker_field;
 
 /*
  * Structure LttEvent and LttEventPosition must begin with the _exact_ same
@@ -104,4 +105,9 @@ double ltt_event_get_double(LttEvent *e, struct marker_field *f);
 
 gchar *ltt_event_get_string(LttEvent *e, struct marker_field *f);
 
+static inline LttCycleCount ltt_event_cycle_count(const LttEvent *e)
+{
+  return e->tsc;
+}
+
 #endif //_LTT_EVENT_H
This page took 0.02271 seconds and 4 git commands to generate.