This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author dmalcolm
Recipients bkabrda, dmalcolm, eric.araujo, fche, jcea, loewis, mjw, pitrou, scox
Date 2012-06-21.18:22:52
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1340302984.16.0.971845586087.issue14776@psf.upfronthosting.co.za>
In-reply-to
Content
I'm attaching an updated version of the patch; I hope there's still time before Saturday to get it into 3.3

I found a bug in the configure script in the old patch: /usr/bin/dtrace was required, even without requesting systemtap.  I've fixed it by adding a new "SYSTEMTAPDEPS" to the configure.a/Makefile.pre.in  A minor subtlety: within the configure.ac's --with-systemtap branch it is set up like this:
   SYSTEMTAPDEPS="\$(srcdir)/Python/pysystemtap.h"
where the leading backslash is needed so that $(srcdir) doesn't get interpreted by the shell when running configure as "run the command named 'srcdir'".

I also added removal of $(srcdir)/Python/pysystemtap.h to the "clean" target

I made a slight change to the static markers themselves: they now pass a 4th argument, the PyFrameObject*, since it's possible to make use of this to inspect locals etc from systemtap, which might be of use to people.  This doesn't introduce any further complexity to the ceval.c code.

I moved the documentation from the devguide back to the cpython source tree, rewrote it as a HOWTO (Doc/howto/instrumentation.rst), adding some extra material (e.g. about tapsets).   I also added a NEWS item.

Tested on a Fedora 15 box with these configurations:
  * --with-pydebug (implicit --without-systemtap)
  * explicitly --without-systemtap
  * --with-pydebug --with-systemtap
  * --with-pydebug --enable-shared --with-systemtap
  * --enable-shared --with-systemtap
(note that because of issue 14774 I had to rebuild _sysconfigdata.py each time, or the tests fail due to being confused about whether we were configured with --enable-shared)

How is this looking?
History
Date User Action Args
2012-06-21 18:23:04dmalcolmsetrecipients: + dmalcolm, loewis, jcea, pitrou, eric.araujo, mjw, fche, scox, bkabrda
2012-06-21 18:23:04dmalcolmsetmessageid: <1340302984.16.0.971845586087.issue14776@psf.upfronthosting.co.za>
2012-06-21 18:23:03dmalcolmlinkissue14776 messages
2012-06-21 18:23:02dmalcolmcreate