X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/5ac1e9b286b068746476878a8a6206b06828a175..575b8f4121cbbfdd017df1cb30bba937d4b13c5c:/perldtrace.d?ds=sidebyside diff --git a/perldtrace.d b/perldtrace.d index d90be53..6a9e9de 100644 --- a/perldtrace.d +++ b/perldtrace.d @@ -1,9 +1,20 @@ /* * Written by Alan Burlinson -- taken from his blog post - * at . + * at . */ provider perl { - probe sub__entry(char *, char *, int); - probe sub__return(char *, char *, int); + probe sub__entry(const char *, const char *, int, const char *); + probe sub__return(const char *, const char *, int, const char *); + + probe phase__change(const char *, const char *); + + probe op__entry(const char *); + + probe loading__file(const char *); + probe loaded__file(const char *); }; + +/* + * ex: set ts=8 sts=4 sw=4 et: + */