X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/fe83c362fb182e46bac02c1bd1cf0b8d82c9f1bf..HEAD:/run.c diff --git a/run.c b/run.c index 01b5f06..352bfbc 100644 --- a/run.c +++ b/run.c @@ -36,23 +36,17 @@ int Perl_runops_standard(pTHX) { - dVAR; OP *op = PL_op; - OP_ENTRY_PROBE(OP_NAME(op)); + PERL_DTRACE_PROBE_OP(op); while ((PL_op = op = op->op_ppaddr(aTHX))) { - OP_ENTRY_PROBE(OP_NAME(op)); + PERL_DTRACE_PROBE_OP(op); } + PERL_ASYNC_CHECK(); TAINT_NOT; return 0; } /* - * Local variables: - * c-indentation-style: bsd - * c-basic-offset: 4 - * indent-tabs-mode: nil - * End: - * * ex: set ts=8 sts=4 sw=4 et: */