add slow_printf support to generic
[lttv.git] / usertrace-generic / sample-printf.c
1
2 #include <stdio.h>
3 #include <unistd.h>
4
5 #define LTT_TRACE
6 #define LTT_BLOCKING 1
7 #include <ltt/ltt-facility-user_generic.h>
8 #include <ltt/ltt-facility-custom-user_generic.h>
9
10
11 int main(int argc, char **argv)
12 {
13 printf("Will trace a printf of an incrementing counter.\n");
14 unsigned int count = 0;
15
16 while(1) {
17 trace_user_generic_slow_printf("Counter value is : %u.", count);
18 count++;
19 sleep(1);
20 }
21
22 return 0;
23 }
24
This page took 0.030609 seconds and 5 git commands to generate.