Skip to main content
aboutsummaryrefslogblamecommitdiffstats
blob: 43e2e73ccf8689afbf8e8466f2827ab3182e85d9 (plain) (tree)
1
2
3
4
5
6
7






                                                             
global counter

probe timer.s(1) {
	printf("%d, %d, %d", counter, counter*5, counter*10);
	counter++;

}

Back to the top