update
[lttv.git] / markers-userspace / testprog.c
... / ...
CommitLineData
1#include <stdio.h>
2#include <unistd.h>
3#include "marker.h"
4
5int main(int argc, char **argv)
6{
7 void *ptr;
8 unsigned long val;
9
10 while (1) {
11 trace_mark(test_marker, "ptr %p val %lu", ptr, val);
12 sleep(2);
13 }
14 return 0;
15}
This page took 0.023756 seconds and 4 git commands to generate.