aboutsummaryrefslogtreecommitdiffstats
path: root/tapset/libosmocore.stp
blob: 10fa7b24835d0f38fdd3644e5d99948906151b5a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* libosmocore tapset
 *
 * This file is part of libosmocore.
 *
 * Each probe defines the probe name and a full probestr which consist of the probe name and between
 * brackets all argument names and values.
 */

probe libosmocore_stderr_start = process("libosmocore").mark("stderr_start")
{
 count = $arg1;
 probestr = sprintf("%s(count=%d), $$name, count);
}

probe libosmocore_stderr_done = process("libosmocore").mark("stderr_done")
{
 probestr = sprintf("%s", $$name);
}