public inbox for systemtap@sourceware.org
 help / color / mirror / Atom feed
From: yaowenbin <yaowenbin1@huawei.com>
To: <systemtap@sourceware.org>
Cc: "hewenliang (C)" <hewenliang4@huawei.com>, <linfeilong@huawei.com>
Subject: fix py3example script run fail once more
Date: Thu, 28 Jul 2022 17:20:22 +0800	[thread overview]
Message-ID: <7c765cc5-639a-72f0-1c7b-ab316e2f3bcc@huawei.com> (raw)

--- 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
   }
 }


                 reply	other threads:[~2022-07-28  9:20 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=7c765cc5-639a-72f0-1c7b-ab316e2f3bcc@huawei.com \
    --to=yaowenbin1@huawei.com \
    --cc=hewenliang4@huawei.com \
    --cc=linfeilong@huawei.com \
    --cc=systemtap@sourceware.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).