summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/two.stp
blob: 83a4705cbe94b26af4136917eb7bf6a04b86b91d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#! stap -p4

%{
#include <linux/version.h>
%}

function get_release () %{
strncpy(THIS->__retvalue, UTS_RELEASE, MAXSTRINGLEN);
%}

probe begin
{
	printk("hello from systemtap, kernel version " . get_release())
}