mirror of
https://github.com/python/cpython.git
synced 2025-12-15 21:44:50 +00:00
bpo-31574: importlib dtrace (#3749)
Importlib was instrumented with two dtrace probes to profile import timing. Signed-off-by: Christian Heimes <christian@python.org>
This commit is contained in:
parent
574562c5dd
commit
3d2b407da0
5 changed files with 28 additions and 0 deletions
|
|
@ -10,6 +10,8 @@ provider python {
|
|||
probe line(const char *, const char *, int);
|
||||
probe gc__start(int);
|
||||
probe gc__done(long);
|
||||
probe import__find__load__start(const char *);
|
||||
probe import__find__load__done(const char *, int);
|
||||
};
|
||||
|
||||
#pragma D attributes Evolving/Evolving/Common provider python provider
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue