summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/xtime.stp
blob: e41f9b16465ab59bd736e12c0b50d694ffa46d3b (plain)
1
2
3
4
5
6
7
#! stap -p4

# Test for getting at an external global variable PR10622
probe kernel.function("do_gettimeofday")
{
  printf("xtime.tv_sec:%d\n", $xtime->tv_sec); exit();
}