This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4b61875
)
Re: XS modules having problems with CLONE and ithreads unless PERL_NO_GET_CONTEXT...
author
Stas Bekman
<stas@stason.org>
Wed, 3 Dec 2003 01:41:42 +0000
(17:41 -0800)
committer
Rafael Garcia-Suarez
<rgarciasuarez@gmail.com>
Wed, 3 Dec 2003 08:27:33 +0000
(08:27 +0000)
Message-ID: <
3FCDAFD6
.9050106@stason.org>
p4raw-id: //depot/perl@21837
sv.c
patch
|
blob
|
blame
|
history
diff --git
a/sv.c
b/sv.c
index
469faa9
..
5e61449
100644
(file)
--- a/
sv.c
+++ b/
sv.c
@@
-11000,9
+11000,10
@@
perl_clone_using(PerlInterpreter *proto_perl, UV flags,
PL_debug = proto_perl->Idebug;
#ifdef USE_REENTRANT_API
-#ifdef DEBUGGING
- PERL_SET_CONTEXT(proto_perl);
-#endif
+ /* XXX: things like -Dm will segfault here in perlio, but doing
+ * PERL_SET_CONTEXT(proto_perl);
+ * breaks too many other things
+ */
Perl_reentrant_init(aTHX);
#endif