Re: [Python-Dev] RFC: Threading-Aware Profiler for Python

2009-05-04 Thread Paul Moore
2009/5/4 Bill Janssen : > Hi, Christian. > > Christian Schubert wrote: > >> I've created an alternative profiler module which queries per-thread >> CPU usage via netlink/taskstats, which limits the applicability to >> Linux (which shouldn't be much of an issue, profiling is usually not >> done by

Re: [Python-Dev] RFC: Threading-Aware Profiler for Python

2009-05-04 Thread Bill Janssen
Hi, Christian. Christian Schubert wrote: > I've created an alternative profiler module which queries per-thread > CPU usage via netlink/taskstats, which limits the applicability to > Linux (which shouldn't be much of an issue, profiling is usually not > done by end users). A surprisingly large

Re: [Python-Dev] RFC: Threading-Aware Profiler for Python

2009-05-04 Thread Robert Brewer
Christian Schubert wrote: > I've created an alternative profiler module which queries per-thread > CPU usage via netlink/taskstats, which limits the applicability to > Linux (which shouldn't be much of an issue, profiling is usually not > done by end users). One of the uses for a profiling mod

Re: [Python-Dev] RFC: Threading-Aware Profiler for Python

2009-05-04 Thread Aahz
On Mon, May 04, 2009, Christian Schubert wrote: > > Python ships with a profiler module which, unfortunately, is almost > useless in a multi-threaded environment. * > > I've created an alternative profiler module which queries per-thread > CPU usage via netlink/taskstats, which limits the applicabi