summaryrefslogtreecommitdiffstats
path: root/testsuite/buildok/twentythree.stp
diff options
context:
space:
mode:
authormmason <mmason>2007-07-25 18:35:30 +0000
committermmason <mmason>2007-07-25 18:35:30 +0000
commit7f4d628d6285195e19c692485d21928c85088b45 (patch)
tree1d14970026ec64917ec80850296886835e14d30c /testsuite/buildok/twentythree.stp
parentc0b94269bf35be3ad448dc900dcfdde9c3b149fd (diff)
downloadsystemtap-steved-7f4d628d6285195e19c692485d21928c85088b45.tar.gz
systemtap-steved-7f4d628d6285195e19c692485d21928c85088b45.tar.xz
systemtap-steved-7f4d628d6285195e19c692485d21928c85088b45.zip
Fixes for PR4836.
Diffstat (limited to 'testsuite/buildok/twentythree.stp')
-rwxr-xr-xtestsuite/buildok/twentythree.stp6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/buildok/twentythree.stp b/testsuite/buildok/twentythree.stp
index 4aebe7bc..4eba64f4 100755
--- a/testsuite/buildok/twentythree.stp
+++ b/testsuite/buildok/twentythree.stp
@@ -2,8 +2,8 @@
# Test for writing 64-bit target variable, PR 1271
-probe kernel.function("free_task")
+probe kernel.function("deactivate_super")
{
- $tsk->timestamp = 22;
- printf("set to 22 => %d\n", $tsk->timestamp);
+ $s->s_maxbytes = 22;
+ printf("set to 22 => %d\n", $s->s_maxbytes)
}