summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/twentythree.stp
blob: 4aebe7bcd63635728c517bd99520c57d13dc1bf4 (plain)
1
2
3
4
5
6
7
8
9
#! stap -gp4

# Test for writing 64-bit target variable, PR 1271

probe kernel.function("free_task")
{
	$tsk->timestamp = 22;
	printf("set to 22 => %d\n", $tsk->timestamp);
}