diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-28 22:30:38 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 1998-11-28 22:30:38 +0000 |
commit | 35ef477370235abeea305d760b3f316d7667ba3c (patch) | |
tree | 7e5b17ba5eb8815c58c13c43f7cf4b07bce789a7 /scope.c | |
parent | 4c8f623d27bbea0cd0b08721f1c2f344dcb98a5b (diff) | |
download | perl-35ef477370235abeea305d760b3f316d7667ba3c.tar.gz |
various tweaks; result passes all tests for normal build on Solaris;
fails two pat.t tests under USE_THREADS; io_poll.t test#3 fails on
win32 due to lack of select() that works on non-socket fds
p4raw-id: //depot/perl@2377
Diffstat (limited to 'scope.c')
-rw-r--r-- | scope.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -930,8 +930,8 @@ cx_dump(PERL_CONTEXT *cx) (long)cx->sb_iters); PerlIO_printf(Perl_debug_log, "SB_MAXITERS = %ld\n", (long)cx->sb_maxiters); - PerlIO_printf(Perl_debug_log, "SB_SAFEBASE = %ld\n", - (long)cx->sb_safebase); + PerlIO_printf(Perl_debug_log, "SB_RFLAGS = %ld\n", + (long)cx->sb_rflags); PerlIO_printf(Perl_debug_log, "SB_ONCE = %ld\n", (long)cx->sb_once); PerlIO_printf(Perl_debug_log, "SB_ORIG = %s\n", |