76a67ed2430a62c7b66cb04b7d8a13feaed8a9c3
[ust.git] / tests / basic / basic.c
1 #include <stdio.h>
2 #include <unistd.h>
3
4 #include <ust/marker.h>
5
6 int main()
7 {
8 int i;
9
10 printf("Basic test program\n");
11
12 for(i=0; i<50; i++) {
13 trace_mark(ust, bar, "str %s", "FOOBAZ");
14 trace_mark(ust, bar2, "number1 %d number2 %d", 53, 9800);
15 usleep(100000);
16 }
17
18 return 0;
19 }
This page took 0.039032 seconds and 3 git commands to generate.