X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=deb.c;h=ad26cd6e18f87b8fb94881670d8fc494a463ff75;hb=47aa779ee4c1a50e927b23367536ef9b5d706729;hp=381fc52840aa8955e01b7cb8231afe724b4b8d68;hpb=0c2634fcd1d84b99d20ef77de231400d450a99dd;p=p5sagit%2Fp5-mst-13.2.git diff --git a/deb.c b/deb.c index 381fc52..ad26cd6 100644 --- a/deb.c +++ b/deb.c @@ -1,6 +1,6 @@ /* deb.c * - * Copyright (c) 1991-1994, Larry Wall + * Copyright (c) 1991-1999, Larry Wall * * You may distribute under the terms of either the GNU General Public * License or the Artistic License, as specified in the README file. @@ -15,118 +15,100 @@ #include "EXTERN.h" #include "perl.h" -#ifdef DEBUGGING -#if !defined(I_STDARG) && !defined(I_VARARGS) - -/* - * Fallback on the old hackers way of doing varargs - */ - -/*VARARGS1*/ -void -deb(pat,a1,a2,a3,a4,a5,a6,a7,a8) - char *pat; -{ - register I32 i; - GV* gv = curcop->cop_filegv; - - fprintf(Perl_debug_log,"(%s:%ld)\t", - SvTYPE(gv) == SVt_PVGV ? SvPVX(GvSV(gv)) : "", - (long)curcop->cop_line); - for (i=0; icop_filegv; + GV* gv = PL_curcop->cop_filegv; - fprintf(Perl_debug_log,"(%s:%ld)\t", +#ifdef USE_THREADS + PerlIO_printf(Perl_debug_log, "0x%lx (%s:%ld)\t", + (unsigned long) thr, + SvTYPE(gv) == SVt_PVGV ? SvPVX(GvSV(gv)) : "", + (long)PL_curcop->cop_line); +#else + PerlIO_printf(Perl_debug_log, "(%s:%ld)\t", SvTYPE(gv) == SVt_PVGV ? SvPVX(GvSV(gv)) : "", - (long)curcop->cop_line); - for (i=0; icop_line); +#endif /* USE_THREADS */ + for (i=0; isi_markbase; if (i < 0) i = 0; - while (++markscan <= markstack_ptr) + while (++markscan <= PL_markstack_ptr) if (*markscan >= i) break; - fprintf(Perl_debug_log, i ? " => ... " : " => "); - if (stack_base[0] != &sv_undef || stack_sp < stack_base) - fprintf(Perl_debug_log, " [STACK UNDERFLOW!!!]\n"); +#ifdef USE_THREADS + PerlIO_printf(Perl_debug_log, i ? "0x%lx => ... " : "0x%lx => ", + (unsigned long) thr); +#else + PerlIO_printf(Perl_debug_log, i ? " => ... " : " => "); +#endif /* USE_THREADS */ + if (PL_stack_base[0] != &PL_sv_undef || PL_stack_sp < PL_stack_base) + PerlIO_printf(Perl_debug_log, " [STACK UNDERFLOW!!!]\n"); do { ++i; - if (markscan <= markstack_ptr && *markscan < i) { + if (markscan <= PL_markstack_ptr && *markscan < i) { do { ++markscan; - putc('*', Perl_debug_log); + PerlIO_putc(Perl_debug_log, '*'); } - while (markscan <= markstack_ptr && *markscan < i); - fprintf(Perl_debug_log, " "); + while (markscan <= PL_markstack_ptr && *markscan < i); + PerlIO_printf(Perl_debug_log, " "); } if (i > top) break; - fprintf(Perl_debug_log, "%-4s ", SvPEEK(stack_base[i])); + PerlIO_printf(Perl_debug_log, "%-4s ", SvPEEK(PL_stack_base[i])); } while (1); - fprintf(Perl_debug_log, "\n"); + PerlIO_printf(Perl_debug_log, "\n"); +#endif /* DEBUGGING */ return 0; } -#else -static int dummy; /* avoid totally empty deb.o file */ -#endif /* DEBUGGING */