summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.printf/basic4.stp
blob: 06caeebf54121db2677ab8ba43a7286347c9fe57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
probe begin 
{
	printf("Hello");
	printf("World");	
	exit()
}
probe end 
{
	printf("Hello");
	printf("World");	
	exit()
}