get start time for trace
authorcompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 13 Sep 2005 19:30:35 +0000 (19:30 +0000)
committercompudj <compudj@04897980-b3bd-0310-b5e0-8ef037075253>
Tue, 13 Sep 2005 19:30:35 +0000 (19:30 +0000)
git-svn-id: http://ltt.polymtl.ca/svn@1175 04897980-b3bd-0310-b5e0-8ef037075253

ltt/branches/poly/ltt/trace.h
ltt/branches/poly/ltt/tracefile.c

index 859c44e240e5cce1a8984e1e52fd87d18a3eb8bb..71ef9bca69221beb2ffcea244ac64d19b474910c 100644 (file)
@@ -143,7 +143,7 @@ gchar * ltt_trace_system_description_description (LttSystemDescription * s);
 
 /* get the start time of the trace */
 
-LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s);
+LttTime ltt_trace_start_time(LttTrace *t);
 
 /* copy tracefile info over another. Used for sync. */
 LttTracefile *ltt_tracefile_new();
index d2b6f898b1b7b4c342a4a431333626bf40ff5303..af3b02fe4b7f29a23992fc7ab64dacd505b4320d 100644 (file)
@@ -2556,13 +2556,11 @@ char * ltt_trace_system_description_description (LttSystemDescription * s)
 
 
 /* get the start time of the trace */
-
-LttTime ltt_trace_system_description_trace_start_time(LttSystemDescription *s)
+LttTime ltt_trace_start_time(LttTrace *t)
 {
-  return s->trace_start;
+  return t->start_time;
 }
 
-
 LttTracefile *ltt_tracefile_new()
 {
   return g_new(LttTracefile, 1);
This page took 0.051521 seconds and 4 git commands to generate.