X-Git-Url: https://perl5.git.perl.org/perl5.git/blobdiff_plain/eb578fdb5569b91c28466a4d1939e381ff6ceaf4..7274dea4b81e86585fcc4c4377c1a9918de3f4af:/run.c diff --git a/run.c b/run.c index 8c2622a..352bfbc 100644 --- a/run.c +++ b/run.c @@ -36,21 +36,17 @@ int Perl_runops_standard(pTHX) { - dVAR; OP *op = PL_op; + PERL_DTRACE_PROBE_OP(op); while ((PL_op = op = op->op_ppaddr(aTHX))) { + 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: */