Fix rhbz2027683 - python probing regression (cont'd)
Resolves: #2027683
This commit is contained in:
parent
a7a4005ad4
commit
35fde734a7
@ -15,13 +15,13 @@ index 000000000..b5d06fcd9
|
|||||||
+/*
|
+/*
|
||||||
+ Define python.function.entry/return:
|
+ Define python.function.entry/return:
|
||||||
+*/
|
+*/
|
||||||
+probe python.function.entry = process("python").library("/usr/lib*/libpython*.so*").mark("function__entry")
|
+probe python.function.entry = process("/usr/lib*/libpython*.so*").mark("function__entry")
|
||||||
+{
|
+{
|
||||||
+ filename = user_string($arg1);
|
+ filename = user_string($arg1);
|
||||||
+ funcname = user_string($arg2);
|
+ funcname = user_string($arg2);
|
||||||
+ lineno = $arg3;
|
+ lineno = $arg3;
|
||||||
+}
|
+}
|
||||||
+probe python.function.return = process("python").library("/usr/lib*/libpython*.so*").mark("function__return")
|
+probe python.function.return = process("/usr/lib*/libpython*.so*").mark("function__return")
|
||||||
+{
|
+{
|
||||||
+ filename = user_string($arg1);
|
+ filename = user_string($arg1);
|
||||||
+ funcname = user_string($arg2);
|
+ funcname = user_string($arg2);
|
||||||
|
@ -118,7 +118,7 @@ m stapdev stapdev
|
|||||||
|
|
||||||
Name: systemtap
|
Name: systemtap
|
||||||
Version: 4.6
|
Version: 4.6
|
||||||
Release: 7%{?release_override}%{?dist}
|
Release: 8%{?release_override}%{?dist}
|
||||||
# for version, see also configure.ac
|
# for version, see also configure.ac
|
||||||
|
|
||||||
|
|
||||||
@ -1281,7 +1281,7 @@ exit 0
|
|||||||
|
|
||||||
# PRERELEASE
|
# PRERELEASE
|
||||||
%changelog
|
%changelog
|
||||||
* Fri Jan 21 2022 Martin Cermak <mcermak@redhat.com> - 4.6-7
|
* Fri Jan 21 2022 Martin Cermak <mcermak@redhat.com> - 4.6-8
|
||||||
- rhbz2027683: python tapset regression
|
- rhbz2027683: python tapset regression
|
||||||
|
|
||||||
* Mon Jan 17 2022 Martin Cermak <mcermak@redhat.com> - 4.6-6
|
* Mon Jan 17 2022 Martin Cermak <mcermak@redhat.com> - 4.6-6
|
||||||
|
Loading…
Reference in New Issue
Block a user