]> sourceware.org Git - systemtap.git/commitdiff
Add a small fix to systemtap.examples/process/futexes2.stp.
authorDavid Smith <dsmith@redhat.com>
Wed, 8 Feb 2017 16:54:41 +0000 (10:54 -0600)
committerDavid Smith <dsmith@redhat.com>
Wed, 8 Feb 2017 16:54:41 +0000 (10:54 -0600)
testsuite/systemtap.examples/process/futexes2.stp

index 86f3b3a452e21660a98024b42a07aade14feb2ea..4c9dd194812aaf902bc637ab99eee02faacc8755 100644 (file)
@@ -20,7 +20,7 @@ global process_names # long-lived pid-to-execname mapping
 probe kernel.function("futex_wait_setup").return {
   if ($return != 0) next
 
-  key = & @entry($q->key)
+  key = @entry(&$q->key)
 
   offset = @KEY->both->offset
   masked_offset = offset & ~(FUT_OFF_INODE | FUT_OFF_MMSHARED)
This page took 0.029357 seconds and 5 git commands to generate.