blob: 1f4f8f9b67ba617d2b4150440e684619805f10b6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#! stap -p4
global foo, bar
probe begin
{
x = 10
foo["hello"] = 25
foo["hello"]++
++foo["hello"]
x = foo["hello"]
foo["yo"] *= bar[x, foo["hello"], "goodbye"]++;
printk("hello from systemtap")
}
|