Markers: remove channel name from trace_mark()
[ust.git] / tests / test-nevents / prog.c
index 6b80d7faa2cb660760d31dcc0f7fa635136e5b2f..4e709156491112c543972ca857ad2ebbcda27634 100644 (file)
  * 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>
@@ -26,8 +30,8 @@ int main()
        int i;
 
        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!");
        }
 
        return 0;
This page took 0.022808 seconds and 4 git commands to generate.