Initial Commit / Linux Combined Proof of Concept example
This commit is contained in:
commit
d0d2eae762
935 changed files with 155947 additions and 0 deletions
22
deps_linux/Python-3.11.1/pydtrace.d
Normal file
22
deps_linux/Python-3.11.1/pydtrace.d
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
/* Python DTrace provider */
|
||||
|
||||
provider python {
|
||||
probe function__entry(const char *, const char *, int);
|
||||
probe function__return(const char *, const char *, int);
|
||||
probe instance__new__start(const char *, const char *);
|
||||
probe instance__new__done(const char *, const char *);
|
||||
probe instance__delete__start(const char *, const char *);
|
||||
probe instance__delete__done(const char *, const char *);
|
||||
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);
|
||||
probe audit(const char *, void *);
|
||||
};
|
||||
|
||||
#pragma D attributes Evolving/Evolving/Common provider python provider
|
||||
#pragma D attributes Evolving/Evolving/Common provider python module
|
||||
#pragma D attributes Evolving/Evolving/Common provider python function
|
||||
#pragma D attributes Evolving/Evolving/Common provider python name
|
||||
#pragma D attributes Evolving/Evolving/Common provider python args
|
||||
Loading…
Add table
Add a link
Reference in a new issue