new ltt-usertrace
[lttv.git] / ltt-usertrace / sample-instrument-fct.c
1
2
3 #include <stdio.h>
4 #include <unistd.h>
5
6
7
8
9 void test_function(void)
10 {
11 printf("we are in a test function\n");
12 }
13
14
15 int main(int argc, char **argv)
16 {
17 while(1) {
18 test_function();
19 sleep(1);
20 }
21
22 return 0;
23 }
24
This page took 0.029788 seconds and 4 git commands to generate.