new ltt-usertrace
[lttv.git] / ltt-usertrace / sample-instrument-fct.c
CommitLineData
e90c7b86 1
2
3#include <stdio.h>
4#include <unistd.h>
5
d5970cd7 6
e90c7b86 7
8
9void test_function(void)
10{
11 printf("we are in a test function\n");
12}
13
14
15int 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.023351 seconds and 4 git commands to generate.