p4raw-id: //depot/perl@19359
PERLVAR(Isignals, U32) /* Using which pre-5.8 signals */
-PERLVAR(Ireentrant_retint, int) /* Integer return value from reentrant functions */
-
PERLVAR(Istashcache, HV *) /* Cache to speed up S_method_common */
+PERLVAR(Ireentrant_retint, int) /* Integer return value from reentrant functions */
+
PERLVAR(IDBassertion, SV *)
/* Don't forget to add your variable also to perl_clone()! */
/* sort() routine */
PL_sort_RealCmp = proto_perl->Isort_RealCmp;
+ /* Not really needed/useful since the reenrant_retint is "volatile",
+ * but do it for consistency's sake. */
+ PL_reentrant_retint = proto_perl->Ireentrant_retint;
+
/* swatch cache */
PL_last_swash_hv = Nullhv; /* reinits on demand */
PL_last_swash_klen = 0;