Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: is it possible to access eval() counter?

by hv (Prior)
on Jun 30, 2006 at 11:48 UTC ( [id://558557]=note: print w/replies, xml ) Need Help??


in reply to is it possible to access eval() counter?

Here is a simpler approach, if you can use Inline::C:

#!/usr/bin/perl -w use strict; use Inline C => q{ int evalseq() { return PL_evalseq; }}; for (1 .. 10) { eval q{ print "in eval (", evalseq(), ")\n" }; print "outside eval (", evalseq(), ")\n"; }

Of course this delves into undocumented internals, so no guarantee that it will work with every past and future version of perl. (It may also need a pTHX or something for threaded builds, but I don't have one handy to check.)

Hugo

Replies are listed 'Best First'.
Re^2: is it possible to access eval() counter?
by Anonymous Monk on Jun 30, 2006 at 14:19 UTC
    Thanks hv :) it works :)

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://558557]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others taking refuge in the Monastery: (9)
As of 2024-03-28 09:39 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found