From: Jarkko Hietaniemi Date: Thu, 20 Sep 2001 21:52:24 +0000 (+0000) Subject: Don't use C++ comments. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=4e1756b74cf5544d5fa024b29773e9111504f9cb;p=p5sagit%2Fp5-mst-13.2.git Don't use C++ comments. p4raw-id: //depot/perl@12098 --- diff --git a/ext/threads/threads.xs b/ext/threads/threads.xs index 09387ba..9d63932 100755 --- a/ext/threads/threads.xs +++ b/ext/threads/threads.xs @@ -129,8 +129,10 @@ SV* thread_create(char* class, SV* init_function, SV* params) { PL_perl_destruct_level = 2; -// sv_dump(SvRV(Perl_get_sv(current_perl, "threads::calltempstore",FALSE))); -// sv_dump(SvRV(Perl_get_sv(thread->interp, "threads::calltempstore",FALSE))); +#if 0 + sv_dump(SvRV(Perl_get_sv(current_perl, "threads::calltempstore",FALSE))); + sv_dump(SvRV(Perl_get_sv(thread->interp, "threads::calltempstore",FALSE))); +#endif thread->init_function = newSVsv(Perl_get_sv(thread->interp, "threads::calltempstore",FALSE)); thread->params = newSVsv(Perl_get_sv(thread->interp, "threads::paramtempstore",FALSE));