Change 12098 by jhi@alpha on 2001/09/20 21:52:24
Don't use C++ comments.
Affected files ...
... //depot/perl/ext/threads/threads.xs#3 edit
Differences ...
==== //depot/perl/ext/threads/threads.xs#3 (xtext) ====
Index: perl/ext/threads/threads.xs
--- perl/ext/threads/threads.xs.~1~ Thu Sep 20 16:00:05 2001
+++ perl/ext/threads/threads.xs Thu Sep 20 16:00:05 2001
@@ -129,8 +129,10 @@
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));
End of Patch.