Commit | Line | Data |
---|---|---|
3d57eb5b | 1 | |
2 | #include <stdio.h> | |
3 | #include <unistd.h> | |
4 | ||
5 | #define LTT_TRACE | |
972a52cf | 6 | #define LTT_BLOCKING 1 |
3d57eb5b | 7 | #include <ltt/ltt-facility-user_generic.h> |
8 | ||
9 | ||
10 | int main(int argc, char **argv) | |
11 | { | |
12 | printf("Will trace the following string : Hello world! Have a nice day.\n"); | |
13 | ||
14 | while(1) { | |
15 | trace_user_generic_string("Hello world! Have a nice day."); | |
16 | sleep(1); | |
17 | } | |
18 | ||
19 | return 0; | |
20 | } | |
21 |