Tracepoint and TRACEPOINT_EVENT API cleanup
[ust.git] / tests / trace_event / trace_event_test.c
index 8e87846e1b3696b1c4c03312525213e79997f3a5..4c98c95990fa779d7f68f5573fe137ffbf0c8158 100644 (file)
@@ -1,4 +1,6 @@
-/* Copyright (C) 2010 Nils Carlson <nils.carlson@ericsson.com>
+/*
+ * Copyright (C) 2010 Nils Carlson <nils.carlson@ericsson.com>
+ * Copyright (C) 2011 Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public
@@ -14,6 +16,7 @@
  * License along with this library; if not, write to the Free Software
  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
  */
+
 #include <stdio.h>
 #include <ust/clock.h>
 
 
 int main(int argc, char * argv[])
 {
-       static unsigned long time, i;
-       for (i=0; i<10; i++) {
-               time=trace_clock_read64();
+       unsigned long time, i;
+
+       for (i = 0; i < 10; i++) {
+               time = trace_clock_read64();
                tracepoint(test, time, i);
        }
        return 0;
This page took 0.023497 seconds and 4 git commands to generate.