X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/effdb690cd35bf1e9e0445ccc548ec5e994ba016..7b443554a8bb4a428e4383994679701730cb3607:/perldtrace.d diff --git a/perldtrace.d b/perldtrace.d index 6fb94a3..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: + */