Markers: remove channel name from trace_mark()
[ust.git] / tests / test-nevents / prog.c
index 71c03e0f4bf42698e6aca96b78c6da8c412c5a16..4e709156491112c543972ca857ad2ebbcda27634 100644 (file)
@@ -1,3 +1,24 @@
+/* Copyright (C) 2009  Pierre-Marc Fournier
+ *
+ * This library is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU Lesser General Public
+ * License as published by the Free Software Foundation; either
+ * version 2.1 of the License, or (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+ * Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public
+ * License along with this library; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301 USA
+ */
+
+/* This test generates a trace of a certain number of events. It is used to
+ * check that no events are lost while tracing.
+ */
+
 #include <string.h>
 #include <stdlib.h>
 #include <ust/ust.h>
 int main()
 {
        int i;
-       const char teststr[] = "Hello World! 1234567890abc";
-       void *ptrs[N_ITER];
 
        for(i=0; i<N_ITER; i++) {
-               trace_mark(ust, an_event, "%d", i);
-               trace_mark(ust, another_event, "%s", "Hello, World!");
+               trace_mark(an_event, "%d", i);
+               trace_mark(another_event, "%s", "Hello, World!");
        }
 
-//     ltt_trace_stop("auto");
-//     ltt_trace_destroy("auto");
-//     sleep(2);
-
        return 0;
 }
This page took 0.026321 seconds and 4 git commands to generate.