public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
* fix py3example script run fail once more
@ 2022-07-28  9:20 yaowenbin
  0 siblings, 0 replies; only message in thread
From: yaowenbin @ 2022-07-28  9:20 UTC (permalink / raw)
  To: systemtap; +Cc: hewenliang (C), linfeilong

--- a/testsuite/systemtap.examples/general/tapset/python3_local.stp
+++ b/testsuite/systemtap.examples/general/tapset/python3_local.stp
@@ -182,7 +182,7 @@
     n = @cast (dict, "PyDictObject", @PYTHON3_LIBRARY)->ma_used;
     if (i > n || entries == 0)
 	return 0
-    return @cast (entries, "PyDictKeysObject", @PYTHON3_LIBRARY)->dk_entries[i]->me_hash
+    return @cast (@DK_ENTRIES(entries), "PyDictKeyEntry", @PYTHON3_LIBRARY)[i]->me_hash
 }

 # FUNCTION P3_GET_DICT_KEY
@@ -195,7 +195,7 @@
     n = @cast (dict, "PyDictObject", @PYTHON3_LIBRARY)->ma_used;
     if (i > n || entries == 0)
 	return 0
-    return @cast (entries, "PyDictKeysObject", @PYTHON3_LIBRARY)->dk_entries[i]->me_key
+    return @cast (@DK_ENTRIES(entries), "PyDictKeyEntry", @PYTHON3_LIBRARY)[i]->me_key
 }

 # FUNCTION P3_GET_DICT_VALUE
@@ -214,7 +214,7 @@
     n = @cast (dict, "PyDictObject", @PYTHON3_LIBRARY)->ma_used;
     if (i > n || entries == 0)
 	return 0
-    return @cast (entries, "PyDictKeysObject", @PYTHON3_LIBRARY)->dk_entries[i]->me_value
+    return @cast (@DK_ENTRIES(entries), "PyDictKeyEntry", @PYTHON3_LIBRARY)[i]->me_value
   }
 }


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-07-28  9:20 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-28  9:20 fix py3example script run fail once more yaowenbin

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).