mirror of
https://github.com/Perl/perl5.git
synced 2026-01-26 00:27:57 +00:00
An empty cpan/.dir-locals.el stops Emacs using the core defaults for code imported from CPAN. Committer's work: To keep t/porting/cmp_version.t and t/porting/utils.t happy, $VERSION needed to be incremented in many files, including throughout dist/PathTools. perldelta entry for module updates. Add two Emacs control files to MANIFEST; re-sort MANIFEST. For: RT #124119.
21 lines
491 B
D
21 lines
491 B
D
/*
|
|
* Written by Alan Burlinson -- taken from his blog post
|
|
* at <http://bleaklow.com/2005/09/09/dtrace_and_perl.html>.
|
|
*/
|
|
|
|
provider perl {
|
|
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:
|
|
*/
|