summaryrefslogtreecommitdiffstats
path: root/testsuite/systemtap.server/hello.stp
blob: a1c4aacb9d702534abeb39d580c257ad587bf36a (plain)
1
2
3
4
5
6
7
8
#! stap 

probe begin
{
	printf("Hello ");
	printf("From Server\n");
	exit()
}