summaryrefslogtreecommitdiff
path: root/pod/perlintern.pod
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2002-12-12 23:42:35 +0000
committerRafael Garcia-Suarez <rgarciasuarez@gmail.com>2002-12-16 22:01:14 +0000
commitd819b83ae9e817e78735176f8a6e23d7a0957169 (patch)
tree2f618bb121acc94dbd71bd942adfe5718ff072ed /pod/perlintern.pod
parent6a78b4db838997434df520d6d78be1e74fd2a70c (diff)
downloadperl-d819b83ae9e817e78735176f8a6e23d7a0957169.tar.gz
Re: [perl #19017] lexical "my" variables not visible in debugger "x" command
Date: Thu, 12 Dec 2002 23:42:35 +0000 Message-ID: <20021212234235.A29245@fdgroup.com> and Date: Sat, 14 Dec 2002 19:16:38 +0000 Message-ID: <20021214191638.A3992@fdgroup.com> p4raw-id: //depot/perl@18307
Diffstat (limited to 'pod/perlintern.pod')
-rw-r--r--pod/perlintern.pod6
1 files changed, 5 insertions, 1 deletions
diff --git a/pod/perlintern.pod b/pod/perlintern.pod
index c2e246a8d9..0d0b19d1b0 100644
--- a/pod/perlintern.pod
+++ b/pod/perlintern.pod
@@ -285,8 +285,12 @@ Found in file pad.h
=item find_runcv
Locate the CV corresponding to the currently executing sub or eval.
+If db_seqp is non_null, skip CVs that are in the DB package and populate
+*db_seqp with the cop sequence number at the point that the DB:: code was
+entered. (allows debuggers to eval in the scope of the breakpoint rather
+than in in the scope of the debuger itself).
- CV* find_runcv()
+ CV* find_runcv(U32 *db_seqp)
=for hackers
Found in file pp_ctl.c