summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/hello.stp
blob: c0613225e4557ead752e43a3aeb32b9152d3f405 (plain)
1
2
3
4
5
6
probe begin
{
	printf("Hello");
	printf("World");
	exit()
}