This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove the Rhapsody port.
[perl5.git] / perldtrace.d
CommitLineData
5ac1e9b2
AA
1/*
2 * Written by Alan Burlinson -- taken from his blog post
344c1cf2 3 * at <http://bleaklow.com/2005/09/09/dtrace_and_perl.html>.
5ac1e9b2
AA
4 */
5
6provider perl {
12b81ca5
TC
7 probe sub__entry(const char *, const char *, int, const char *);
8 probe sub__return(const char *, const char *, int, const char *);
cb3f8189
SM
9
10 probe phase__change(const char *, const char *);
fe83c362
SM
11
12 probe op__entry(const char *);
32aeab29
SM
13
14 probe loading__file(const char *);
15 probe loaded__file(const char *);
5ac1e9b2 16};
6b5ec6e4
JJ
17
18/*
19 * Local Variables:
20 * tab-width: 4
21 * indent-tabs-mode: nil
22 * End:
23 *
14d04a33 24 * ex: set ts=8 sts=4 sw=4 et:
6b5ec6e4 25 */