This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
fix USE_THREADS coredump due to uninitialized PL_hv_fetch_ent_mh
[perl5.git] / util.c
1 /*    util.c
2  *
3  *    Copyright (c) 1991-1997, Larry Wall
4  *
5  *    You may distribute under the terms of either the GNU General Public
6  *    License or the Artistic License, as specified in the README file.
7  *
8  */
9
10 /*
11  * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12  * not content."  --Gandalf
13  */
14
15 #include "EXTERN.h"
16 #include "perl.h"
17
18 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
19 #include <signal.h>
20 #endif
21
22 #ifndef SIG_ERR
23 # define SIG_ERR ((Sighandler_t) -1)
24 #endif
25
26 /* XXX If this causes problems, set i_unistd=undef in the hint file.  */
27 #ifdef I_UNISTD
28 #  include <unistd.h>
29 #endif
30
31 #ifdef I_VFORK
32 #  include <vfork.h>
33 #endif
34
35 /* Put this after #includes because fork and vfork prototypes may
36    conflict.
37 */
38 #ifndef HAS_VFORK
39 #   define vfork fork
40 #endif
41
42 #ifdef I_FCNTL
43 #  include <fcntl.h>
44 #endif
45 #ifdef I_SYS_FILE
46 #  include <sys/file.h>
47 #endif
48
49 #ifdef I_SYS_WAIT
50 #  include <sys/wait.h>
51 #endif
52
53 #define FLUSH
54
55 #ifdef LEAKTEST
56
57 static void xstat _((int));
58 long xcount[MAXXCOUNT];
59 long lastxcount[MAXXCOUNT];
60 long xycount[MAXXCOUNT][MAXYCOUNT];
61 long lastxycount[MAXXCOUNT][MAXYCOUNT];
62
63 #endif
64
65 #ifndef MYMALLOC
66
67 /* paranoid version of malloc */
68
69 /* NOTE:  Do not call the next three routines directly.  Use the macros
70  * in handy.h, so that we can easily redefine everything to do tracking of
71  * allocated hunks back to the original New to track down any memory leaks.
72  * XXX This advice seems to be widely ignored :-(   --AD  August 1996.
73  */
74
75 Malloc_t
76 safemalloc(MEM_SIZE size)
77 {
78     Malloc_t ptr;
79 #ifdef HAS_64K_LIMIT
80         if (size > 0xffff) {
81                 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
82                 my_exit(1);
83         }
84 #endif /* HAS_64K_LIMIT */
85 #ifdef DEBUGGING
86     if ((long)size < 0)
87         croak("panic: malloc");
88 #endif
89     ptr = PerlMem_malloc(size?size:1);  /* malloc(0) is NASTY on our system */
90 #if !(defined(I286) || defined(atarist))
91     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
92 #else
93     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
94 #endif
95     if (ptr != Nullch)
96         return ptr;
97     else if (PL_nomemok)
98         return Nullch;
99     else {
100         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
101         my_exit(1);
102         return Nullch;
103     }
104     /*NOTREACHED*/
105 }
106
107 /* paranoid version of realloc */
108
109 Malloc_t
110 saferealloc(Malloc_t where,MEM_SIZE size)
111 {
112     Malloc_t ptr;
113 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
114     Malloc_t PerlMem_realloc();
115 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
116
117 #ifdef HAS_64K_LIMIT 
118     if (size > 0xffff) {
119         PerlIO_printf(PerlIO_stderr(),
120                       "Reallocation too large: %lx\n", size) FLUSH;
121         my_exit(1);
122     }
123 #endif /* HAS_64K_LIMIT */
124     if (!size) {
125         safefree(where);
126         return NULL;
127     }
128
129     if (!where)
130         return safemalloc(size);
131 #ifdef DEBUGGING
132     if ((long)size < 0)
133         croak("panic: realloc");
134 #endif
135     ptr = PerlMem_realloc(where,size);
136
137 #if !(defined(I286) || defined(atarist))
138     DEBUG_m( {
139         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
140         PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
141     } )
142 #else
143     DEBUG_m( {
144         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++);
145         PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
146     } )
147 #endif
148
149     if (ptr != Nullch)
150         return ptr;
151     else if (PL_nomemok)
152         return Nullch;
153     else {
154         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
155         my_exit(1);
156         return Nullch;
157     }
158     /*NOTREACHED*/
159 }
160
161 /* safe version of free */
162
163 Free_t
164 safefree(Malloc_t where)
165 {
166 #if !(defined(I286) || defined(atarist))
167     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
168 #else
169     DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
170 #endif
171     if (where) {
172         /*SUPPRESS 701*/
173         PerlMem_free(where);
174     }
175 }
176
177 /* safe version of calloc */
178
179 Malloc_t
180 safecalloc(MEM_SIZE count, MEM_SIZE size)
181 {
182     Malloc_t ptr;
183
184 #ifdef HAS_64K_LIMIT
185     if (size * count > 0xffff) {
186         PerlIO_printf(PerlIO_stderr(),
187                       "Allocation too large: %lx\n", size * count) FLUSH;
188         my_exit(1);
189     }
190 #endif /* HAS_64K_LIMIT */
191 #ifdef DEBUGGING
192     if ((long)size < 0 || (long)count < 0)
193         croak("panic: calloc");
194 #endif
195     size *= count;
196     ptr = PerlMem_malloc(size?size:1);  /* malloc(0) is NASTY on our system */
197 #if !(defined(I286) || defined(atarist))
198     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld  x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
199 #else
200     DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
201 #endif
202     if (ptr != Nullch) {
203         memset((void*)ptr, 0, size);
204         return ptr;
205     }
206     else if (PL_nomemok)
207         return Nullch;
208     else {
209         PerlIO_puts(PerlIO_stderr(),no_mem) FLUSH;
210         my_exit(1);
211         return Nullch;
212     }
213     /*NOTREACHED*/
214 }
215
216 #endif /* !MYMALLOC */
217
218 #ifdef LEAKTEST
219
220 struct mem_test_strut {
221     union {
222         long type;
223         char c[2];
224     } u;
225     long size;
226 };
227
228 #    define ALIGN sizeof(struct mem_test_strut)
229
230 #    define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
231 #    define typeof_chunk(ch) \
232         (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
233 #    define set_typeof_chunk(ch,t) \
234         (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
235 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE                            \
236                           ? MAXYCOUNT - 1                               \
237                           : ( (size) > 40                               \
238                               ? ((size) - 1)/8 + 5                      \
239                               : ((size) - 1)/4))
240
241 Malloc_t
242 safexmalloc(I32 x, MEM_SIZE size)
243 {
244     register char* where = (char*)safemalloc(size + ALIGN);
245
246     xcount[x] += size;
247     xycount[x][SIZE_TO_Y(size)]++;
248     set_typeof_chunk(where, x);
249     sizeof_chunk(where) = size;
250     return (Malloc_t)(where + ALIGN);
251 }
252
253 Malloc_t
254 safexrealloc(Malloc_t wh, MEM_SIZE size)
255 {
256     char *where = (char*)wh;
257
258     if (!wh)
259         return safexmalloc(0,size);
260     
261     {
262         MEM_SIZE old = sizeof_chunk(where - ALIGN);
263         int t = typeof_chunk(where - ALIGN);
264         register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
265     
266         xycount[t][SIZE_TO_Y(old)]--;
267         xycount[t][SIZE_TO_Y(size)]++;
268         xcount[t] += size - old;
269         sizeof_chunk(new) = size;
270         return (Malloc_t)(new + ALIGN);
271     }
272 }
273
274 void
275 safexfree(Malloc_t wh)
276 {
277     I32 x;
278     char *where = (char*)wh;
279     MEM_SIZE size;
280     
281     if (!where)
282         return;
283     where -= ALIGN;
284     size = sizeof_chunk(where);
285     x = where[0] + 100 * where[1];
286     xcount[x] -= size;
287     xycount[x][SIZE_TO_Y(size)]--;
288     safefree(where);
289 }
290
291 Malloc_t
292 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
293 {
294     register char * where = (char*)safexmalloc(x, size * count + ALIGN);
295     xcount[x] += size;
296     xycount[x][SIZE_TO_Y(size)]++;
297     memset((void*)(where + ALIGN), 0, size * count);
298     set_typeof_chunk(where, x);
299     sizeof_chunk(where) = size;
300     return (Malloc_t)(where + ALIGN);
301 }
302
303 static void
304 xstat(int flag)
305 {
306     register I32 i, j, total = 0;
307     I32 subtot[MAXYCOUNT];
308
309     for (j = 0; j < MAXYCOUNT; j++) {
310         subtot[j] = 0;
311     }
312     
313     PerlIO_printf(PerlIO_stderr(), "   Id  subtot   4   8  12  16  20  24  28  32  36  40  48  56  64  72  80 80+\n", total);
314     for (i = 0; i < MAXXCOUNT; i++) {
315         total += xcount[i];
316         for (j = 0; j < MAXYCOUNT; j++) {
317             subtot[j] += xycount[i][j];
318         }
319         if (flag == 0
320             ? xcount[i]                 /* Have something */
321             : (flag == 2 
322                ? xcount[i] != lastxcount[i] /* Changed */
323                : xcount[i] > lastxcount[i])) { /* Growed */
324             PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100, 
325                           flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
326             lastxcount[i] = xcount[i];
327             for (j = 0; j < MAXYCOUNT; j++) {
328                 if ( flag == 0 
329                      ? xycount[i][j]    /* Have something */
330                      : (flag == 2 
331                         ? xycount[i][j] != lastxycount[i][j] /* Changed */
332                         : xycount[i][j] > lastxycount[i][j])) { /* Growed */
333                     PerlIO_printf(PerlIO_stderr(),"%3ld ", 
334                                   flag == 2 
335                                   ? xycount[i][j] - lastxycount[i][j] 
336                                   : xycount[i][j]);
337                     lastxycount[i][j] = xycount[i][j];
338                 } else {
339                     PerlIO_printf(PerlIO_stderr(), "  . ", xycount[i][j]);
340                 }
341             }
342             PerlIO_printf(PerlIO_stderr(), "\n");
343         }
344     }
345     if (flag != 2) {
346         PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
347         for (j = 0; j < MAXYCOUNT; j++) {
348             if (subtot[j]) {
349                 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
350             } else {
351                 PerlIO_printf(PerlIO_stderr(), "  . ");
352             }
353         }
354         PerlIO_printf(PerlIO_stderr(), "\n");   
355     }
356 }
357
358 #endif /* LEAKTEST */
359
360 /* copy a string up to some (non-backslashed) delimiter, if any */
361
362 char *
363 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
364 {
365     register I32 tolen;
366     for (tolen = 0; from < fromend; from++, tolen++) {
367         if (*from == '\\') {
368             if (from[1] == delim)
369                 from++;
370             else {
371                 if (to < toend)
372                     *to++ = *from;
373                 tolen++;
374                 from++;
375             }
376         }
377         else if (*from == delim)
378             break;
379         if (to < toend)
380             *to++ = *from;
381     }
382     if (to < toend)
383         *to = '\0';
384     *retlen = tolen;
385     return from;
386 }
387
388 /* return ptr to little string in big string, NULL if not found */
389 /* This routine was donated by Corey Satten. */
390
391 char *
392 instr(register char *big, register char *little)
393 {
394     register char *s, *x;
395     register I32 first;
396
397     if (!little)
398         return big;
399     first = *little++;
400     if (!first)
401         return big;
402     while (*big) {
403         if (*big++ != first)
404             continue;
405         for (x=big,s=little; *s; /**/ ) {
406             if (!*x)
407                 return Nullch;
408             if (*s++ != *x++) {
409                 s--;
410                 break;
411             }
412         }
413         if (!*s)
414             return big-1;
415     }
416     return Nullch;
417 }
418
419 /* same as instr but allow embedded nulls */
420
421 char *
422 ninstr(register char *big, register char *bigend, char *little, char *lend)
423 {
424     register char *s, *x;
425     register I32 first = *little;
426     register char *littleend = lend;
427
428     if (!first && little >= littleend)
429         return big;
430     if (bigend - big < littleend - little)
431         return Nullch;
432     bigend -= littleend - little++;
433     while (big <= bigend) {
434         if (*big++ != first)
435             continue;
436         for (x=big,s=little; s < littleend; /**/ ) {
437             if (*s++ != *x++) {
438                 s--;
439                 break;
440             }
441         }
442         if (s >= littleend)
443             return big-1;
444     }
445     return Nullch;
446 }
447
448 /* reverse of the above--find last substring */
449
450 char *
451 rninstr(register char *big, char *bigend, char *little, char *lend)
452 {
453     register char *bigbeg;
454     register char *s, *x;
455     register I32 first = *little;
456     register char *littleend = lend;
457
458     if (!first && little >= littleend)
459         return bigend;
460     bigbeg = big;
461     big = bigend - (littleend - little++);
462     while (big >= bigbeg) {
463         if (*big-- != first)
464             continue;
465         for (x=big+2,s=little; s < littleend; /**/ ) {
466             if (*s++ != *x++) {
467                 s--;
468                 break;
469             }
470         }
471         if (s >= littleend)
472             return big+1;
473     }
474     return Nullch;
475 }
476
477 /*
478  * Set up for a new ctype locale.
479  */
480 void
481 perl_new_ctype(char *newctype)
482 {
483 #ifdef USE_LOCALE_CTYPE
484
485     int i;
486
487     for (i = 0; i < 256; i++) {
488         if (isUPPER_LC(i))
489             fold_locale[i] = toLOWER_LC(i);
490         else if (isLOWER_LC(i))
491             fold_locale[i] = toUPPER_LC(i);
492         else
493             fold_locale[i] = i;
494     }
495
496 #endif /* USE_LOCALE_CTYPE */
497 }
498
499 /*
500  * Set up for a new collation locale.
501  */
502 void
503 perl_new_collate(char *newcoll)
504 {
505 #ifdef USE_LOCALE_COLLATE
506
507     if (! newcoll) {
508         if (PL_collation_name) {
509             ++PL_collation_ix;
510             Safefree(PL_collation_name);
511             PL_collation_name = NULL;
512             PL_collation_standard = TRUE;
513             PL_collxfrm_base = 0;
514             PL_collxfrm_mult = 2;
515         }
516         return;
517     }
518
519     if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
520         ++PL_collation_ix;
521         Safefree(PL_collation_name);
522         PL_collation_name = savepv(newcoll);
523         PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
524
525         {
526           /*  2: at most so many chars ('a', 'b'). */
527           /* 50: surely no system expands a char more. */
528 #define XFRMBUFSIZE  (2 * 50)
529           char xbuf[XFRMBUFSIZE];
530           Size_t fa = strxfrm(xbuf, "a",  XFRMBUFSIZE);
531           Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
532           SSize_t mult = fb - fa;
533           if (mult < 1)
534               croak("strxfrm() gets absurd");
535           PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
536           PL_collxfrm_mult = mult;
537         }
538     }
539
540 #endif /* USE_LOCALE_COLLATE */
541 }
542
543 /*
544  * Set up for a new numeric locale.
545  */
546 void
547 perl_new_numeric(char *newnum)
548 {
549 #ifdef USE_LOCALE_NUMERIC
550
551     if (! newnum) {
552         if (PL_numeric_name) {
553             Safefree(PL_numeric_name);
554             PL_numeric_name = NULL;
555             PL_numeric_standard = TRUE;
556             PL_numeric_local = TRUE;
557         }
558         return;
559     }
560
561     if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
562         Safefree(PL_numeric_name);
563         PL_numeric_name = savepv(newnum);
564         PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
565         PL_numeric_local = TRUE;
566     }
567
568 #endif /* USE_LOCALE_NUMERIC */
569 }
570
571 void
572 perl_set_numeric_standard(void)
573 {
574 #ifdef USE_LOCALE_NUMERIC
575
576     if (! PL_numeric_standard) {
577         setlocale(LC_NUMERIC, "C");
578         PL_numeric_standard = TRUE;
579         PL_numeric_local = FALSE;
580     }
581
582 #endif /* USE_LOCALE_NUMERIC */
583 }
584
585 void
586 perl_set_numeric_local(void)
587 {
588 #ifdef USE_LOCALE_NUMERIC
589
590     if (! PL_numeric_local) {
591         setlocale(LC_NUMERIC, PL_numeric_name);
592         PL_numeric_standard = FALSE;
593         PL_numeric_local = TRUE;
594     }
595
596 #endif /* USE_LOCALE_NUMERIC */
597 }
598
599
600 /*
601  * Initialize locale awareness.
602  */
603 int
604 perl_init_i18nl10n(int printwarn)
605 {
606     int ok = 1;
607     /* returns
608      *    1 = set ok or not applicable,
609      *    0 = fallback to C locale,
610      *   -1 = fallback to C locale failed
611      */
612
613 #ifdef USE_LOCALE
614
615 #ifdef USE_LOCALE_CTYPE
616     char *curctype   = NULL;
617 #endif /* USE_LOCALE_CTYPE */
618 #ifdef USE_LOCALE_COLLATE
619     char *curcoll    = NULL;
620 #endif /* USE_LOCALE_COLLATE */
621 #ifdef USE_LOCALE_NUMERIC
622     char *curnum     = NULL;
623 #endif /* USE_LOCALE_NUMERIC */
624     char *lc_all     = PerlEnv_getenv("LC_ALL");
625     char *lang       = PerlEnv_getenv("LANG");
626     bool setlocale_failure = FALSE;
627
628 #ifdef LOCALE_ENVIRON_REQUIRED
629
630     /*
631      * Ultrix setlocale(..., "") fails if there are no environment
632      * variables from which to get a locale name.
633      */
634
635     bool done = FALSE;
636
637 #ifdef LC_ALL
638     if (lang) {
639         if (setlocale(LC_ALL, ""))
640             done = TRUE;
641         else
642             setlocale_failure = TRUE;
643     }
644     if (!setlocale_failure)
645 #endif /* LC_ALL */
646     {
647 #ifdef USE_LOCALE_CTYPE
648         if (! (curctype = setlocale(LC_CTYPE,
649                                     (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
650                                     ? "" : Nullch)))
651             setlocale_failure = TRUE;
652 #endif /* USE_LOCALE_CTYPE */
653 #ifdef USE_LOCALE_COLLATE
654         if (! (curcoll = setlocale(LC_COLLATE,
655                                    (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
656                                    ? "" : Nullch)))
657             setlocale_failure = TRUE;
658 #endif /* USE_LOCALE_COLLATE */
659 #ifdef USE_LOCALE_NUMERIC
660         if (! (curnum = setlocale(LC_NUMERIC,
661                                   (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
662                                   ? "" : Nullch)))
663             setlocale_failure = TRUE;
664 #endif /* USE_LOCALE_NUMERIC */
665     }
666
667 #else /* !LOCALE_ENVIRON_REQUIRED */
668
669 #ifdef LC_ALL
670
671     if (! setlocale(LC_ALL, ""))
672         setlocale_failure = TRUE;
673     else {
674 #ifdef USE_LOCALE_CTYPE
675         curctype = setlocale(LC_CTYPE, Nullch);
676 #endif /* USE_LOCALE_CTYPE */
677 #ifdef USE_LOCALE_COLLATE
678         curcoll = setlocale(LC_COLLATE, Nullch);
679 #endif /* USE_LOCALE_COLLATE */
680 #ifdef USE_LOCALE_NUMERIC
681         curnum = setlocale(LC_NUMERIC, Nullch);
682 #endif /* USE_LOCALE_NUMERIC */
683     }
684
685 #else /* !LC_ALL */
686
687 #ifdef USE_LOCALE_CTYPE
688     if (! (curctype = setlocale(LC_CTYPE, "")))
689         setlocale_failure = TRUE;
690 #endif /* USE_LOCALE_CTYPE */
691 #ifdef USE_LOCALE_COLLATE
692     if (! (curcoll = setlocale(LC_COLLATE, "")))
693         setlocale_failure = TRUE;
694 #endif /* USE_LOCALE_COLLATE */
695 #ifdef USE_LOCALE_NUMERIC
696     if (! (curnum = setlocale(LC_NUMERIC, "")))
697         setlocale_failure = TRUE;
698 #endif /* USE_LOCALE_NUMERIC */
699
700 #endif /* LC_ALL */
701
702 #endif /* !LOCALE_ENVIRON_REQUIRED */
703
704     if (setlocale_failure) {
705         char *p;
706         bool locwarn = (printwarn > 1 || 
707                         printwarn &&
708                         (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
709
710         if (locwarn) {
711 #ifdef LC_ALL
712   
713             PerlIO_printf(PerlIO_stderr(),
714                "perl: warning: Setting locale failed.\n");
715
716 #else /* !LC_ALL */
717   
718             PerlIO_printf(PerlIO_stderr(),
719                "perl: warning: Setting locale failed for the categories:\n\t");
720 #ifdef USE_LOCALE_CTYPE
721             if (! curctype)
722                 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
723 #endif /* USE_LOCALE_CTYPE */
724 #ifdef USE_LOCALE_COLLATE
725             if (! curcoll)
726                 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
727 #endif /* USE_LOCALE_COLLATE */
728 #ifdef USE_LOCALE_NUMERIC
729             if (! curnum)
730                 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
731 #endif /* USE_LOCALE_NUMERIC */
732             PerlIO_printf(PerlIO_stderr(), "\n");
733
734 #endif /* LC_ALL */
735
736             PerlIO_printf(PerlIO_stderr(),
737                 "perl: warning: Please check that your locale settings:\n");
738
739             PerlIO_printf(PerlIO_stderr(),
740                           "\tLC_ALL = %c%s%c,\n",
741                           lc_all ? '"' : '(',
742                           lc_all ? lc_all : "unset",
743                           lc_all ? '"' : ')');
744
745             {
746               char **e;
747               for (e = environ; *e; e++) {
748                   if (strnEQ(*e, "LC_", 3)
749                         && strnNE(*e, "LC_ALL=", 7)
750                         && (p = strchr(*e, '=')))
751                       PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
752                                     (int)(p - *e), *e, p + 1);
753               }
754             }
755
756             PerlIO_printf(PerlIO_stderr(),
757                           "\tLANG = %c%s%c\n",
758                           lang ? '"' : '(',
759                           lang ? lang : "unset",
760                           lang ? '"' : ')');
761
762             PerlIO_printf(PerlIO_stderr(),
763                           "    are supported and installed on your system.\n");
764         }
765
766 #ifdef LC_ALL
767
768         if (setlocale(LC_ALL, "C")) {
769             if (locwarn)
770                 PerlIO_printf(PerlIO_stderr(),
771       "perl: warning: Falling back to the standard locale (\"C\").\n");
772             ok = 0;
773         }
774         else {
775             if (locwarn)
776                 PerlIO_printf(PerlIO_stderr(),
777       "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
778             ok = -1;
779         }
780
781 #else /* ! LC_ALL */
782
783         if (0
784 #ifdef USE_LOCALE_CTYPE
785             || !(curctype || setlocale(LC_CTYPE, "C"))
786 #endif /* USE_LOCALE_CTYPE */
787 #ifdef USE_LOCALE_COLLATE
788             || !(curcoll || setlocale(LC_COLLATE, "C"))
789 #endif /* USE_LOCALE_COLLATE */
790 #ifdef USE_LOCALE_NUMERIC
791             || !(curnum || setlocale(LC_NUMERIC, "C"))
792 #endif /* USE_LOCALE_NUMERIC */
793             )
794         {
795             if (locwarn)
796                 PerlIO_printf(PerlIO_stderr(),
797       "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
798             ok = -1;
799         }
800
801 #endif /* ! LC_ALL */
802
803 #ifdef USE_LOCALE_CTYPE
804         curctype = setlocale(LC_CTYPE, Nullch);
805 #endif /* USE_LOCALE_CTYPE */
806 #ifdef USE_LOCALE_COLLATE
807         curcoll = setlocale(LC_COLLATE, Nullch);
808 #endif /* USE_LOCALE_COLLATE */
809 #ifdef USE_LOCALE_NUMERIC
810         curnum = setlocale(LC_NUMERIC, Nullch);
811 #endif /* USE_LOCALE_NUMERIC */
812     }
813
814 #ifdef USE_LOCALE_CTYPE
815     perl_new_ctype(curctype);
816 #endif /* USE_LOCALE_CTYPE */
817
818 #ifdef USE_LOCALE_COLLATE
819     perl_new_collate(curcoll);
820 #endif /* USE_LOCALE_COLLATE */
821
822 #ifdef USE_LOCALE_NUMERIC
823     perl_new_numeric(curnum);
824 #endif /* USE_LOCALE_NUMERIC */
825
826 #endif /* USE_LOCALE */
827
828     return ok;
829 }
830
831 /* Backwards compatibility. */
832 int
833 perl_init_i18nl14n(int printwarn)
834 {
835     return perl_init_i18nl10n(printwarn);
836 }
837
838 #ifdef USE_LOCALE_COLLATE
839
840 /*
841  * mem_collxfrm() is a bit like strxfrm() but with two important
842  * differences. First, it handles embedded NULs. Second, it allocates
843  * a bit more memory than needed for the transformed data itself.
844  * The real transformed data begins at offset sizeof(collationix).
845  * Please see sv_collxfrm() to see how this is used.
846  */
847 char *
848 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
849 {
850     char *xbuf;
851     STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
852
853     /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
854     /* the +1 is for the terminating NUL. */
855
856     xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
857     New(171, xbuf, xAlloc, char);
858     if (! xbuf)
859         goto bad;
860
861     *(U32*)xbuf = PL_collation_ix;
862     xout = sizeof(PL_collation_ix);
863     for (xin = 0; xin < len; ) {
864         SSize_t xused;
865
866         for (;;) {
867             xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
868             if (xused == -1)
869                 goto bad;
870             if (xused < xAlloc - xout)
871                 break;
872             xAlloc = (2 * xAlloc) + 1;
873             Renew(xbuf, xAlloc, char);
874             if (! xbuf)
875                 goto bad;
876         }
877
878         xin += strlen(s + xin) + 1;
879         xout += xused;
880
881         /* Embedded NULs are understood but silently skipped
882          * because they make no sense in locale collation. */
883     }
884
885     xbuf[xout] = '\0';
886     *xlen = xout - sizeof(PL_collation_ix);
887     return xbuf;
888
889   bad:
890     Safefree(xbuf);
891     *xlen = 0;
892     return NULL;
893 }
894
895 #endif /* USE_LOCALE_COLLATE */
896
897 void
898 fbm_compile(SV *sv, U32 flags /* not used yet */)
899 {
900     register U8 *s;
901     register U8 *table;
902     register U32 i;
903     STRLEN len;
904     I32 rarest = 0;
905     U32 frequency = 256;
906
907     s = (U8*)SvPV_force(sv, len);
908     sv_upgrade(sv, SVt_PVBM);
909     if (len > 255 || len == 0)  /* TAIL might be on on a zero-length string. */
910         return;                 /* can't have offsets that big */
911     if (len > 2) {
912         Sv_Grow(sv,len + 258);
913         table = (unsigned char*)(SvPVX(sv) + len + 1);
914         s = table - 2;
915         for (i = 0; i < 256; i++) {
916             table[i] = len;
917         }
918         i = 0;
919         while (s >= (unsigned char*)(SvPVX(sv)))
920             {
921                 if (table[*s] == len)
922                     table[*s] = i;
923                 s--,i++;
924             }
925     }
926     sv_magic(sv, Nullsv, 'B', Nullch, 0);       /* deep magic */
927     SvVALID_on(sv);
928
929     s = (unsigned char*)(SvPVX(sv));            /* deeper magic */
930     for (i = 0; i < len; i++) {
931         if (freq[s[i]] < frequency) {
932             rarest = i;
933             frequency = freq[s[i]];
934         }
935     }
936     BmRARE(sv) = s[rarest];
937     BmPREVIOUS(sv) = rarest;
938     DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
939 }
940
941 char *
942 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
943 {
944     register unsigned char *s;
945     register I32 tmp;
946     register I32 littlelen;
947     register unsigned char *little;
948     register unsigned char *table;
949     register unsigned char *olds;
950     register unsigned char *oldlittle;
951
952     if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
953         STRLEN len;
954         char *l = SvPV(littlestr,len);
955         if (!len) {
956             if (SvTAIL(littlestr)) {    /* Can be only 0-len constant
957                                            substr => we can ignore SvVALID */
958                 if (PL_multiline) {
959                     char *t = "\n";
960                     if ((s = (unsigned char*)ninstr((char*)big, (char*)bigend,
961                                                     t, t + len))) {
962                         return (char*)s;
963                     }
964                 }
965                 if (bigend > big && bigend[-1] == '\n')
966                     return (char *)(bigend - 1);
967                 else
968                     return (char *) bigend;
969             }
970             return (char*)big;
971         }
972         return ninstr((char*)big,(char*)bigend, l, l + len);
973     }
974
975     littlelen = SvCUR(littlestr);
976     if (SvTAIL(littlestr) && !PL_multiline) {   /* tail anchored? */
977         if (littlelen > bigend - big)
978             return Nullch;
979         little = (unsigned char*)SvPVX(littlestr);
980         s = bigend - littlelen;
981         if (s > big
982             && bigend[-1] == '\n' 
983             && s[-1] == *little && memEQ((char*)s - 1,(char*)little,littlelen))
984             return (char*)s - 1;        /* how sweet it is */
985         else if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
986             return (char*)s;            /* how sweet it is */
987         return Nullch;
988     }
989     if (littlelen <= 2) {
990         unsigned char c1 = (unsigned char)SvPVX(littlestr)[0];
991         unsigned char c2 = (unsigned char)SvPVX(littlestr)[1];
992         /* This may do extra comparisons if littlelen == 2, but this
993            should be hidden in the noise since we do less indirection. */
994         
995         s = big;
996         bigend -= littlelen;
997         while (s <= bigend) {
998             if (s[0] == c1 
999                 && (littlelen == 1 || s[1] == c2)
1000                 && (!SvTAIL(littlestr)
1001                     || s == bigend
1002                     || s[littlelen] == '\n')) /* Automatically multiline */
1003             {
1004                 return (char*)s;
1005             }
1006             s++;
1007         }
1008         return Nullch;
1009     }
1010     table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
1011     if (--littlelen >= bigend - big)
1012         return Nullch;
1013     s = big + littlelen;
1014     oldlittle = little = table - 2;
1015     if (s < bigend) {
1016       top2:
1017         /*SUPPRESS 560*/
1018         if (tmp = table[*s]) {
1019 #ifdef POINTERRIGOR
1020             if (bigend - s > tmp) {
1021                 s += tmp;
1022                 goto top2;
1023             }
1024 #else
1025             if ((s += tmp) < bigend)
1026                 goto top2;
1027 #endif
1028             return Nullch;
1029         }
1030         else {
1031             tmp = littlelen;    /* less expensive than calling strncmp() */
1032             olds = s;
1033             while (tmp--) {
1034                 if (*--s == *--little)
1035                     continue;
1036               differ:
1037                 s = olds + 1;   /* here we pay the price for failure */
1038                 little = oldlittle;
1039                 if (s < bigend) /* fake up continue to outer loop */
1040                     goto top2;
1041                 return Nullch;
1042             }
1043             if (SvTAIL(littlestr)       /* automatically multiline */
1044                 && olds + 1 != bigend
1045                 && olds[1] != '\n') 
1046                 goto differ;
1047             return (char *)s;
1048         }
1049     }
1050     return Nullch;
1051 }
1052
1053 /* start_shift, end_shift are positive quantities which give offsets
1054    of ends of some substring of bigstr.
1055    If `last' we want the last occurence.
1056    old_posp is the way of communication between consequent calls if
1057    the next call needs to find the . 
1058    The initial *old_posp should be -1.
1059    Note that we do not take into account SvTAIL, so it may give wrong
1060    positives if _ALL flag is set.
1061  */
1062
1063 char *
1064 screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1065 {
1066     dTHR;
1067     register unsigned char *s, *x;
1068     register unsigned char *big;
1069     register I32 pos;
1070     register I32 previous;
1071     register I32 first;
1072     register unsigned char *little;
1073     register I32 stop_pos;
1074     register unsigned char *littleend;
1075     I32 found = 0;
1076
1077     if (*old_posp == -1
1078         ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1079         : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0))
1080         return Nullch;
1081     little = (unsigned char *)(SvPVX(littlestr));
1082     littleend = little + SvCUR(littlestr);
1083     first = *little++;
1084     /* The value of pos we can start at: */
1085     previous = BmPREVIOUS(littlestr);
1086     big = (unsigned char *)(SvPVX(bigstr));
1087     /* The value of pos we can stop at: */
1088     stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1089     if (previous + start_shift > stop_pos) return Nullch;
1090     while (pos < previous + start_shift) {
1091         if (!(pos += PL_screamnext[pos]))
1092             return Nullch;
1093     }
1094 #ifdef POINTERRIGOR
1095     do {
1096         if (pos >= stop_pos) break;
1097         if (big[pos-previous] != first)
1098             continue;
1099         for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1100             if (*s++ != *x++) {
1101                 s--;
1102                 break;
1103             }
1104         }
1105         if (s == littleend) {
1106             *old_posp = pos;
1107             if (!last) return (char *)(big+pos-previous);
1108             found = 1;
1109         }
1110     } while ( pos += PL_screamnext[pos] );
1111     return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1112 #else /* !POINTERRIGOR */
1113     big -= previous;
1114     do {
1115         if (pos >= stop_pos) break;
1116         if (big[pos] != first)
1117             continue;
1118         for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1119             if (*s++ != *x++) {
1120                 s--;
1121                 break;
1122             }
1123         }
1124         if (s == littleend) {
1125             *old_posp = pos;
1126             if (!last) return (char *)(big+pos);
1127             found = 1;
1128         }
1129     } while ( pos += PL_screamnext[pos] );
1130     return (last && found) ? (char *)(big+(*old_posp)) : Nullch;
1131 #endif /* POINTERRIGOR */
1132 }
1133
1134 I32
1135 ibcmp(char *s1, char *s2, register I32 len)
1136 {
1137     register U8 *a = (U8 *)s1;
1138     register U8 *b = (U8 *)s2;
1139     while (len--) {
1140         if (*a != *b && *a != fold[*b])
1141             return 1;
1142         a++,b++;
1143     }
1144     return 0;
1145 }
1146
1147 I32
1148 ibcmp_locale(char *s1, char *s2, register I32 len)
1149 {
1150     register U8 *a = (U8 *)s1;
1151     register U8 *b = (U8 *)s2;
1152     while (len--) {
1153         if (*a != *b && *a != fold_locale[*b])
1154             return 1;
1155         a++,b++;
1156     }
1157     return 0;
1158 }
1159
1160 /* copy a string to a safe spot */
1161
1162 char *
1163 savepv(char *sv)
1164 {
1165     register char *newaddr;
1166
1167     New(902,newaddr,strlen(sv)+1,char);
1168     (void)strcpy(newaddr,sv);
1169     return newaddr;
1170 }
1171
1172 /* same thing but with a known length */
1173
1174 char *
1175 savepvn(char *sv, register I32 len)
1176 {
1177     register char *newaddr;
1178
1179     New(903,newaddr,len+1,char);
1180     Copy(sv,newaddr,len,char);          /* might not be null terminated */
1181     newaddr[len] = '\0';                /* is now */
1182     return newaddr;
1183 }
1184
1185 /* the SV for form() and mess() is not kept in an arena */
1186
1187 STATIC SV *
1188 mess_alloc(void)
1189 {
1190     SV *sv;
1191     XPVMG *any;
1192
1193     /* Create as PVMG now, to avoid any upgrading later */
1194     New(905, sv, 1, SV);
1195     Newz(905, any, 1, XPVMG);
1196     SvFLAGS(sv) = SVt_PVMG;
1197     SvANY(sv) = (void*)any;
1198     SvREFCNT(sv) = 1 << 30; /* practically infinite */
1199     return sv;
1200 }
1201
1202 char *
1203 form(const char* pat, ...)
1204 {
1205     va_list args;
1206     va_start(args, pat);
1207     if (!PL_mess_sv)
1208         PL_mess_sv = mess_alloc();
1209     sv_vsetpvfn(PL_mess_sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1210     va_end(args);
1211     return SvPVX(PL_mess_sv);
1212 }
1213
1214 char *
1215 mess(const char *pat, va_list *args)
1216 {
1217     SV *sv;
1218     static char dgd[] = " during global destruction.\n";
1219
1220     if (!PL_mess_sv)
1221         PL_mess_sv = mess_alloc();
1222     sv = PL_mess_sv;
1223     sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1224     if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1225         dTHR;
1226         if (PL_dirty)
1227             sv_catpv(sv, dgd);
1228         else {
1229             if (PL_curcop->cop_line)
1230                 sv_catpvf(sv, " at %_ line %ld",
1231                           GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1232             if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1233                 bool line_mode = (RsSIMPLE(PL_rs) &&
1234                                   SvLEN(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1235                 sv_catpvf(sv, ", <%s> %s %ld",
1236                           PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1237                           line_mode ? "line" : "chunk", 
1238                           (long)IoLINES(GvIOp(PL_last_in_gv)));
1239             }
1240             sv_catpv(sv, ".\n");
1241         }
1242     }
1243     return SvPVX(sv);
1244 }
1245
1246 OP *
1247 die(const char* pat, ...)
1248 {
1249     dTHR;
1250     va_list args;
1251     char *message;
1252     int was_in_eval = PL_in_eval;
1253     HV *stash;
1254     GV *gv;
1255     CV *cv;
1256
1257     DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1258                           "%p: die: curstack = %p, mainstack = %p\n",
1259                           thr, PL_curstack, PL_mainstack));
1260
1261     va_start(args, pat);
1262     message = pat ? mess(pat, &args) : Nullch;
1263     va_end(args);
1264
1265     DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1266                           "%p: die: message = %s\ndiehook = %p\n",
1267                           thr, message, PL_diehook));
1268     if (PL_diehook) {
1269         /* sv_2cv might call croak() */
1270         SV *olddiehook = PL_diehook;
1271         ENTER;
1272         SAVESPTR(PL_diehook);
1273         PL_diehook = Nullsv;
1274         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1275         LEAVE;
1276         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1277             dSP;
1278             SV *msg;
1279
1280             ENTER;
1281             if(message) {
1282                 msg = newSVpv(message, 0);
1283                 SvREADONLY_on(msg);
1284                 SAVEFREESV(msg);
1285             }
1286             else {
1287                 msg = ERRSV;
1288             }
1289
1290             PUSHSTACKi(PERLSI_DIEHOOK);
1291             PUSHMARK(SP);
1292             XPUSHs(msg);
1293             PUTBACK;
1294             perl_call_sv((SV*)cv, G_DISCARD);
1295             POPSTACK;
1296             LEAVE;
1297         }
1298     }
1299
1300     PL_restartop = die_where(message);
1301     DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1302           "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1303           thr, PL_restartop, was_in_eval, PL_top_env));
1304     if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1305         JMPENV_JUMP(3);
1306     return PL_restartop;
1307 }
1308
1309 void
1310 croak(const char* pat, ...)
1311 {
1312     dTHR;
1313     va_list args;
1314     char *message;
1315     HV *stash;
1316     GV *gv;
1317     CV *cv;
1318
1319     va_start(args, pat);
1320     message = mess(pat, &args);
1321     va_end(args);
1322     DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1323     if (PL_diehook) {
1324         /* sv_2cv might call croak() */
1325         SV *olddiehook = PL_diehook;
1326         ENTER;
1327         SAVESPTR(PL_diehook);
1328         PL_diehook = Nullsv;
1329         cv = sv_2cv(olddiehook, &stash, &gv, 0);
1330         LEAVE;
1331         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1332             dSP;
1333             SV *msg;
1334
1335             ENTER;
1336             msg = newSVpv(message, 0);
1337             SvREADONLY_on(msg);
1338             SAVEFREESV(msg);
1339
1340             PUSHSTACKi(PERLSI_DIEHOOK);
1341             PUSHMARK(SP);
1342             XPUSHs(msg);
1343             PUTBACK;
1344             perl_call_sv((SV*)cv, G_DISCARD);
1345             POPSTACK;
1346             LEAVE;
1347         }
1348     }
1349     if (PL_in_eval) {
1350         PL_restartop = die_where(message);
1351         JMPENV_JUMP(3);
1352     }
1353     PerlIO_puts(PerlIO_stderr(),message);
1354     (void)PerlIO_flush(PerlIO_stderr());
1355     my_failure_exit();
1356 }
1357
1358 void
1359 warn(const char* pat,...)
1360 {
1361     va_list args;
1362     char *message;
1363     HV *stash;
1364     GV *gv;
1365     CV *cv;
1366
1367     va_start(args, pat);
1368     message = mess(pat, &args);
1369     va_end(args);
1370
1371     if (PL_warnhook) {
1372         /* sv_2cv might call warn() */
1373         dTHR;
1374         SV *oldwarnhook = PL_warnhook;
1375         ENTER;
1376         SAVESPTR(PL_warnhook);
1377         PL_warnhook = Nullsv;
1378         cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1379         LEAVE;
1380         if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1381             dSP;
1382             SV *msg;
1383
1384             ENTER;
1385             msg = newSVpv(message, 0);
1386             SvREADONLY_on(msg);
1387             SAVEFREESV(msg);
1388
1389             PUSHSTACKi(PERLSI_WARNHOOK);
1390             PUSHMARK(SP);
1391             XPUSHs(msg);
1392             PUTBACK;
1393             perl_call_sv((SV*)cv, G_DISCARD);
1394             POPSTACK;
1395             LEAVE;
1396             return;
1397         }
1398     }
1399     PerlIO_puts(PerlIO_stderr(),message);
1400 #ifdef LEAKTEST
1401     DEBUG_L(*message == '!' 
1402             ? (xstat(message[1]=='!'
1403                      ? (message[2]=='!' ? 2 : 1)
1404                      : 0)
1405                , 0)
1406             : 0);
1407 #endif
1408     (void)PerlIO_flush(PerlIO_stderr());
1409 }
1410
1411 void
1412 warner(U32  err, const char* pat,...)
1413 {
1414     dTHR;
1415     va_list args;
1416     char *message;
1417     HV *stash;
1418     GV *gv;
1419     CV *cv;
1420
1421     va_start(args, pat);
1422     message = mess(pat, &args);
1423     va_end(args);
1424
1425     if (ckDEAD(err)) {
1426 #ifdef USE_THREADS
1427         DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1428 #endif /* USE_THREADS */
1429         if (PL_diehook) {
1430             /* sv_2cv might call croak() */
1431             SV *olddiehook = PL_diehook;
1432             ENTER;
1433             SAVESPTR(PL_diehook);
1434             PL_diehook = Nullsv;
1435             cv = sv_2cv(olddiehook, &stash, &gv, 0);
1436             LEAVE;
1437             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1438                 dSP;
1439                 SV *msg;
1440  
1441                 ENTER;
1442                 msg = newSVpv(message, 0);
1443                 SvREADONLY_on(msg);
1444                 SAVEFREESV(msg);
1445  
1446                 PUSHMARK(sp);
1447                 XPUSHs(msg);
1448                 PUTBACK;
1449                 perl_call_sv((SV*)cv, G_DISCARD);
1450  
1451                 LEAVE;
1452             }
1453         }
1454         if (PL_in_eval) {
1455             PL_restartop = die_where(message);
1456             JMPENV_JUMP(3);
1457         }
1458         PerlIO_puts(PerlIO_stderr(),message);
1459         (void)PerlIO_flush(PerlIO_stderr());
1460         my_failure_exit();
1461
1462     }
1463     else {
1464         if (PL_warnhook) {
1465             /* sv_2cv might call warn() */
1466             dTHR;
1467             SV *oldwarnhook = PL_warnhook;
1468             ENTER;
1469             SAVESPTR(PL_warnhook);
1470             PL_warnhook = Nullsv;
1471             cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1472                 LEAVE;
1473             if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1474                 dSP;
1475                 SV *msg;
1476  
1477                 ENTER;
1478                 msg = newSVpv(message, 0);
1479                 SvREADONLY_on(msg);
1480                 SAVEFREESV(msg);
1481  
1482                 PUSHMARK(sp);
1483                 XPUSHs(msg);
1484                 PUTBACK;
1485                 perl_call_sv((SV*)cv, G_DISCARD);
1486  
1487                 LEAVE;
1488                 return;
1489             }
1490         }
1491         PerlIO_puts(PerlIO_stderr(),message);
1492 #ifdef LEAKTEST
1493         DEBUG_L(xstat());
1494 #endif
1495         (void)PerlIO_flush(PerlIO_stderr());
1496     }
1497 }
1498
1499 #ifndef VMS  /* VMS' my_setenv() is in VMS.c */
1500 #ifndef WIN32
1501 void
1502 my_setenv(char *nam, char *val)
1503 {
1504     register I32 i=setenv_getix(nam);           /* where does it go? */
1505
1506     if (environ == PL_origenviron) {    /* need we copy environment? */
1507         I32 j;
1508         I32 max;
1509         char **tmpenv;
1510
1511         /*SUPPRESS 530*/
1512         for (max = i; environ[max]; max++) ;
1513         New(901,tmpenv, max+2, char*);
1514         for (j=0; j<max; j++)           /* copy environment */
1515             tmpenv[j] = savepv(environ[j]);
1516         tmpenv[max] = Nullch;
1517         environ = tmpenv;               /* tell exec where it is now */
1518     }
1519     if (!val) {
1520         Safefree(environ[i]);
1521         while (environ[i]) {
1522             environ[i] = environ[i+1];
1523             i++;
1524         }
1525         return;
1526     }
1527     if (!environ[i]) {                  /* does not exist yet */
1528         Renew(environ, i+2, char*);     /* just expand it a bit */
1529         environ[i+1] = Nullch;  /* make sure it's null terminated */
1530     }
1531     else
1532         Safefree(environ[i]);
1533     New(904, environ[i], strlen(nam) + strlen(val) + 2, char);
1534 #ifndef MSDOS
1535     (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1536 #else
1537     /* MS-DOS requires environment variable names to be in uppercase */
1538     /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1539      * some utilities and applications may break because they only look
1540      * for upper case strings. (Fixed strupr() bug here.)]
1541      */
1542     strcpy(environ[i],nam); strupr(environ[i]);
1543     (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1544 #endif /* MSDOS */
1545 }
1546
1547 #else /* if WIN32 */
1548
1549 void
1550 my_setenv(char *nam,char *val)
1551 {
1552
1553 #ifdef USE_WIN32_RTL_ENV
1554
1555     register char *envstr;
1556     STRLEN namlen = strlen(nam);
1557     STRLEN vallen;
1558     char *oldstr = environ[setenv_getix(nam)];
1559
1560     /* putenv() has totally broken semantics in both the Borland
1561      * and Microsoft CRTLs.  They either store the passed pointer in
1562      * the environment without making a copy, or make a copy and don't
1563      * free it. And on top of that, they dont free() old entries that
1564      * are being replaced/deleted.  This means the caller must
1565      * free any old entries somehow, or we end up with a memory
1566      * leak every time my_setenv() is called.  One might think
1567      * one could directly manipulate environ[], like the UNIX code
1568      * above, but direct changes to environ are not allowed when
1569      * calling putenv(), since the RTLs maintain an internal
1570      * *copy* of environ[]. Bad, bad, *bad* stink.
1571      * GSAR 97-06-07
1572      */
1573
1574     if (!val) {
1575         if (!oldstr)
1576             return;
1577         val = "";
1578         vallen = 0;
1579     }
1580     else
1581         vallen = strlen(val);
1582     New(904, envstr, namlen + vallen + 3, char);
1583     (void)sprintf(envstr,"%s=%s",nam,val);
1584     (void)PerlEnv_putenv(envstr);
1585     if (oldstr)
1586         Safefree(oldstr);
1587 #ifdef _MSC_VER
1588     Safefree(envstr);           /* MSVCRT leaks without this */
1589 #endif
1590
1591 #else /* !USE_WIN32_RTL_ENV */
1592
1593     /* The sane way to deal with the environment.
1594      * Has these advantages over putenv() & co.:
1595      *  * enables us to store a truly empty value in the
1596      *    environment (like in UNIX).
1597      *  * we don't have to deal with RTL globals, bugs and leaks.
1598      *  * Much faster.
1599      * Why you may want to enable USE_WIN32_RTL_ENV:
1600      *  * environ[] and RTL functions will not reflect changes,
1601      *    which might be an issue if extensions want to access
1602      *    the env. via RTL.  This cuts both ways, since RTL will
1603      *    not see changes made by extensions that call the Win32
1604      *    functions directly, either.
1605      * GSAR 97-06-07
1606      */
1607     SetEnvironmentVariable(nam,val);
1608
1609 #endif
1610 }
1611
1612 #endif /* WIN32 */
1613
1614 I32
1615 setenv_getix(char *nam)
1616 {
1617     register I32 i, len = strlen(nam);
1618
1619     for (i = 0; environ[i]; i++) {
1620         if (
1621 #ifdef WIN32
1622             strnicmp(environ[i],nam,len) == 0
1623 #else
1624             strnEQ(environ[i],nam,len)
1625 #endif
1626             && environ[i][len] == '=')
1627             break;                      /* strnEQ must come first to avoid */
1628     }                                   /* potential SEGV's */
1629     return i;
1630 }
1631
1632 #endif /* !VMS */
1633
1634 #ifdef UNLINK_ALL_VERSIONS
1635 I32
1636 unlnk(f)        /* unlink all versions of a file */
1637 char *f;
1638 {
1639     I32 i;
1640
1641     for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1642     return i ? 0 : -1;
1643 }
1644 #endif
1645
1646 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1647 char *
1648 my_bcopy(register char *from,register char *to,register I32 len)
1649 {
1650     char *retval = to;
1651
1652     if (from - to >= 0) {
1653         while (len--)
1654             *to++ = *from++;
1655     }
1656     else {
1657         to += len;
1658         from += len;
1659         while (len--)
1660             *(--to) = *(--from);
1661     }
1662     return retval;
1663 }
1664 #endif
1665
1666 #ifndef HAS_MEMSET
1667 void *
1668 my_memset(loc,ch,len)
1669 register char *loc;
1670 register I32 ch;
1671 register I32 len;
1672 {
1673     char *retval = loc;
1674
1675     while (len--)
1676         *loc++ = ch;
1677     return retval;
1678 }
1679 #endif
1680
1681 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1682 char *
1683 my_bzero(loc,len)
1684 register char *loc;
1685 register I32 len;
1686 {
1687     char *retval = loc;
1688
1689     while (len--)
1690         *loc++ = 0;
1691     return retval;
1692 }
1693 #endif
1694
1695 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1696 I32
1697 my_memcmp(s1,s2,len)
1698 char *s1;
1699 char *s2;
1700 register I32 len;
1701 {
1702     register U8 *a = (U8 *)s1;
1703     register U8 *b = (U8 *)s2;
1704     register I32 tmp;
1705
1706     while (len--) {
1707         if (tmp = *a++ - *b++)
1708             return tmp;
1709     }
1710     return 0;
1711 }
1712 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1713
1714 #ifndef HAS_VPRINTF
1715
1716 #ifdef USE_CHAR_VSPRINTF
1717 char *
1718 #else
1719 int
1720 #endif
1721 vsprintf(dest, pat, args)
1722 char *dest;
1723 const char *pat;
1724 char *args;
1725 {
1726     FILE fakebuf;
1727
1728     fakebuf._ptr = dest;
1729     fakebuf._cnt = 32767;
1730 #ifndef _IOSTRG
1731 #define _IOSTRG 0
1732 #endif
1733     fakebuf._flag = _IOWRT|_IOSTRG;
1734     _doprnt(pat, args, &fakebuf);       /* what a kludge */
1735     (void)putc('\0', &fakebuf);
1736 #ifdef USE_CHAR_VSPRINTF
1737     return(dest);
1738 #else
1739     return 0;           /* perl doesn't use return value */
1740 #endif
1741 }
1742
1743 #endif /* HAS_VPRINTF */
1744
1745 #ifdef MYSWAP
1746 #if BYTEORDER != 0x4321
1747 short
1748 my_swap(short s)
1749 {
1750 #if (BYTEORDER & 1) == 0
1751     short result;
1752
1753     result = ((s & 255) << 8) + ((s >> 8) & 255);
1754     return result;
1755 #else
1756     return s;
1757 #endif
1758 }
1759
1760 long
1761 my_htonl(long l)
1762 {
1763     union {
1764         long result;
1765         char c[sizeof(long)];
1766     } u;
1767
1768 #if BYTEORDER == 0x1234
1769     u.c[0] = (l >> 24) & 255;
1770     u.c[1] = (l >> 16) & 255;
1771     u.c[2] = (l >> 8) & 255;
1772     u.c[3] = l & 255;
1773     return u.result;
1774 #else
1775 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1776     croak("Unknown BYTEORDER\n");
1777 #else
1778     register I32 o;
1779     register I32 s;
1780
1781     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1782         u.c[o & 0xf] = (l >> s) & 255;
1783     }
1784     return u.result;
1785 #endif
1786 #endif
1787 }
1788
1789 long
1790 my_ntohl(long l)
1791 {
1792     union {
1793         long l;
1794         char c[sizeof(long)];
1795     } u;
1796
1797 #if BYTEORDER == 0x1234
1798     u.c[0] = (l >> 24) & 255;
1799     u.c[1] = (l >> 16) & 255;
1800     u.c[2] = (l >> 8) & 255;
1801     u.c[3] = l & 255;
1802     return u.l;
1803 #else
1804 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1805     croak("Unknown BYTEORDER\n");
1806 #else
1807     register I32 o;
1808     register I32 s;
1809
1810     u.l = l;
1811     l = 0;
1812     for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1813         l |= (u.c[o & 0xf] & 255) << s;
1814     }
1815     return l;
1816 #endif
1817 #endif
1818 }
1819
1820 #endif /* BYTEORDER != 0x4321 */
1821 #endif /* MYSWAP */
1822
1823 /*
1824  * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1825  * If these functions are defined,
1826  * the BYTEORDER is neither 0x1234 nor 0x4321.
1827  * However, this is not assumed.
1828  * -DWS
1829  */
1830
1831 #define HTOV(name,type)                                         \
1832         type                                                    \
1833         name (n)                                                \
1834         register type n;                                        \
1835         {                                                       \
1836             union {                                             \
1837                 type value;                                     \
1838                 char c[sizeof(type)];                           \
1839             } u;                                                \
1840             register I32 i;                                     \
1841             register I32 s;                                     \
1842             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1843                 u.c[i] = (n >> s) & 0xFF;                       \
1844             }                                                   \
1845             return u.value;                                     \
1846         }
1847
1848 #define VTOH(name,type)                                         \
1849         type                                                    \
1850         name (n)                                                \
1851         register type n;                                        \
1852         {                                                       \
1853             union {                                             \
1854                 type value;                                     \
1855                 char c[sizeof(type)];                           \
1856             } u;                                                \
1857             register I32 i;                                     \
1858             register I32 s;                                     \
1859             u.value = n;                                        \
1860             n = 0;                                              \
1861             for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) {  \
1862                 n += (u.c[i] & 0xFF) << s;                      \
1863             }                                                   \
1864             return n;                                           \
1865         }
1866
1867 #if defined(HAS_HTOVS) && !defined(htovs)
1868 HTOV(htovs,short)
1869 #endif
1870 #if defined(HAS_HTOVL) && !defined(htovl)
1871 HTOV(htovl,long)
1872 #endif
1873 #if defined(HAS_VTOHS) && !defined(vtohs)
1874 VTOH(vtohs,short)
1875 #endif
1876 #if defined(HAS_VTOHL) && !defined(vtohl)
1877 VTOH(vtohl,long)
1878 #endif
1879
1880     /* VMS' my_popen() is in VMS.c, same with OS/2. */
1881 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
1882 PerlIO *
1883 my_popen(char *cmd, char *mode)
1884 {
1885     int p[2];
1886     register I32 This, that;
1887     register I32 pid;
1888     SV *sv;
1889     I32 doexec = strNE(cmd,"-");
1890
1891 #ifdef OS2
1892     if (doexec) {
1893         return my_syspopen(cmd,mode);
1894     }
1895 #endif 
1896     This = (*mode == 'w');
1897     that = !This;
1898     if (doexec && PL_tainting) {
1899         taint_env();
1900         taint_proper("Insecure %s%s", "EXEC");
1901     }
1902     if (PerlProc_pipe(p) < 0)
1903         return Nullfp;
1904     while ((pid = (doexec?vfork():fork())) < 0) {
1905         if (errno != EAGAIN) {
1906             PerlLIO_close(p[This]);
1907             if (!doexec)
1908                 croak("Can't fork");
1909             return Nullfp;
1910         }
1911         sleep(5);
1912     }
1913     if (pid == 0) {
1914         GV* tmpgv;
1915
1916 #undef THIS
1917 #undef THAT
1918 #define THIS that
1919 #define THAT This
1920         PerlLIO_close(p[THAT]);
1921         if (p[THIS] != (*mode == 'r')) {
1922             PerlLIO_dup2(p[THIS], *mode == 'r');
1923             PerlLIO_close(p[THIS]);
1924         }
1925         if (doexec) {
1926 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1927             int fd;
1928
1929 #ifndef NOFILE
1930 #define NOFILE 20
1931 #endif
1932             for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
1933                 PerlLIO_close(fd);
1934 #endif
1935             do_exec(cmd);       /* may or may not use the shell */
1936             PerlProc__exit(1);
1937         }
1938         /*SUPPRESS 560*/
1939         if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1940             sv_setiv(GvSV(tmpgv), (IV)getpid());
1941         PL_forkprocess = 0;
1942         hv_clear(PL_pidstatus); /* we have no children */
1943         return Nullfp;
1944 #undef THIS
1945 #undef THAT
1946     }
1947     do_execfree();      /* free any memory malloced by child on vfork */
1948     PerlLIO_close(p[that]);
1949     if (p[that] < p[This]) {
1950         PerlLIO_dup2(p[This], p[that]);
1951         PerlLIO_close(p[This]);
1952         p[This] = p[that];
1953     }
1954     sv = *av_fetch(PL_fdpid,p[This],TRUE);
1955     (void)SvUPGRADE(sv,SVt_IV);
1956     SvIVX(sv) = pid;
1957     PL_forkprocess = pid;
1958     return PerlIO_fdopen(p[This], mode);
1959 }
1960 #else
1961 #if defined(atarist) || defined(DJGPP)
1962 FILE *popen();
1963 PerlIO *
1964 my_popen(cmd,mode)
1965 char    *cmd;
1966 char    *mode;
1967 {
1968     /* Needs work for PerlIO ! */
1969     /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
1970     return popen(PerlIO_exportFILE(cmd, 0), mode);
1971 }
1972 #endif
1973
1974 #endif /* !DOSISH */
1975
1976 #ifdef DUMP_FDS
1977 void
1978 dump_fds(char *s)
1979 {
1980     int fd;
1981     struct stat tmpstatbuf;
1982
1983     PerlIO_printf(PerlIO_stderr(),"%s", s);
1984     for (fd = 0; fd < 32; fd++) {
1985         if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
1986             PerlIO_printf(PerlIO_stderr()," %d",fd);
1987     }
1988     PerlIO_printf(PerlIO_stderr(),"\n");
1989 }
1990 #endif  /* DUMP_FDS */
1991
1992 #ifndef HAS_DUP2
1993 int
1994 dup2(oldfd,newfd)
1995 int oldfd;
1996 int newfd;
1997 {
1998 #if defined(HAS_FCNTL) && defined(F_DUPFD)
1999     if (oldfd == newfd)
2000         return oldfd;
2001     PerlLIO_close(newfd);
2002     return fcntl(oldfd, F_DUPFD, newfd);
2003 #else
2004 #define DUP2_MAX_FDS 256
2005     int fdtmp[DUP2_MAX_FDS];
2006     I32 fdx = 0;
2007     int fd;
2008
2009     if (oldfd == newfd)
2010         return oldfd;
2011     PerlLIO_close(newfd);
2012     /* good enough for low fd's... */
2013     while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2014         if (fdx >= DUP2_MAX_FDS) {
2015             PerlLIO_close(fd);
2016             fd = -1;
2017             break;
2018         }
2019         fdtmp[fdx++] = fd;
2020     }
2021     while (fdx > 0)
2022         PerlLIO_close(fdtmp[--fdx]);
2023     return fd;
2024 #endif
2025 }
2026 #endif
2027
2028
2029 #ifdef HAS_SIGACTION
2030
2031 Sighandler_t
2032 rsignal(int signo, Sighandler_t handler)
2033 {
2034     struct sigaction act, oact;
2035
2036     act.sa_handler = handler;
2037     sigemptyset(&act.sa_mask);
2038     act.sa_flags = 0;
2039 #ifdef SA_RESTART
2040     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2041 #endif
2042 #ifdef SA_NOCLDWAIT
2043     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2044         act.sa_flags |= SA_NOCLDWAIT;
2045 #endif
2046     if (sigaction(signo, &act, &oact) == -1)
2047         return SIG_ERR;
2048     else
2049         return oact.sa_handler;
2050 }
2051
2052 Sighandler_t
2053 rsignal_state(int signo)
2054 {
2055     struct sigaction oact;
2056
2057     if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2058         return SIG_ERR;
2059     else
2060         return oact.sa_handler;
2061 }
2062
2063 int
2064 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2065 {
2066     struct sigaction act;
2067
2068     act.sa_handler = handler;
2069     sigemptyset(&act.sa_mask);
2070     act.sa_flags = 0;
2071 #ifdef SA_RESTART
2072     act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2073 #endif
2074 #ifdef SA_NOCLDWAIT
2075     if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2076         act.sa_flags |= SA_NOCLDWAIT;
2077 #endif
2078     return sigaction(signo, &act, save);
2079 }
2080
2081 int
2082 rsignal_restore(int signo, Sigsave_t *save)
2083 {
2084     return sigaction(signo, save, (struct sigaction *)NULL);
2085 }
2086
2087 #else /* !HAS_SIGACTION */
2088
2089 Sighandler_t
2090 rsignal(int signo, Sighandler_t handler)
2091 {
2092     return PerlProc_signal(signo, handler);
2093 }
2094
2095 static int sig_trapped;
2096
2097 static
2098 Signal_t
2099 sig_trap(int signo)
2100 {
2101     sig_trapped++;
2102 }
2103
2104 Sighandler_t
2105 rsignal_state(int signo)
2106 {
2107     Sighandler_t oldsig;
2108
2109     sig_trapped = 0;
2110     oldsig = PerlProc_signal(signo, sig_trap);
2111     PerlProc_signal(signo, oldsig);
2112     if (sig_trapped)
2113         PerlProc_kill(getpid(), signo);
2114     return oldsig;
2115 }
2116
2117 int
2118 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2119 {
2120     *save = PerlProc_signal(signo, handler);
2121     return (*save == SIG_ERR) ? -1 : 0;
2122 }
2123
2124 int
2125 rsignal_restore(int signo, Sigsave_t *save)
2126 {
2127     return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2128 }
2129
2130 #endif /* !HAS_SIGACTION */
2131
2132     /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2133 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS)
2134 I32
2135 my_pclose(PerlIO *ptr)
2136 {
2137     Sigsave_t hstat, istat, qstat;
2138     int status;
2139     SV **svp;
2140     int pid;
2141     int pid2;
2142     bool close_failed;
2143     int saved_errno;
2144 #ifdef VMS
2145     int saved_vaxc_errno;
2146 #endif
2147 #ifdef WIN32
2148     int saved_win32_errno;
2149 #endif
2150
2151     svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2152     pid = (int)SvIVX(*svp);
2153     SvREFCNT_dec(*svp);
2154     *svp = &PL_sv_undef;
2155 #ifdef OS2
2156     if (pid == -1) {                    /* Opened by popen. */
2157         return my_syspclose(ptr);
2158     }
2159 #endif 
2160     if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2161         saved_errno = errno;
2162 #ifdef VMS
2163         saved_vaxc_errno = vaxc$errno;
2164 #endif
2165 #ifdef WIN32
2166         saved_win32_errno = GetLastError();
2167 #endif
2168     }
2169 #ifdef UTS
2170     if(PerlProc_kill(pid, 0) < 0) { return(pid); }   /* HOM 12/23/91 */
2171 #endif
2172     rsignal_save(SIGHUP, SIG_IGN, &hstat);
2173     rsignal_save(SIGINT, SIG_IGN, &istat);
2174     rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2175     do {
2176         pid2 = wait4pid(pid, &status, 0);
2177     } while (pid2 == -1 && errno == EINTR);
2178     rsignal_restore(SIGHUP, &hstat);
2179     rsignal_restore(SIGINT, &istat);
2180     rsignal_restore(SIGQUIT, &qstat);
2181     if (close_failed) {
2182         SETERRNO(saved_errno, saved_vaxc_errno);
2183         return -1;
2184     }
2185     return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2186 }
2187 #endif /* !DOSISH */
2188
2189 #if  !defined(DOSISH) || defined(OS2) || defined(WIN32)
2190 I32
2191 wait4pid(int pid, int *statusp, int flags)
2192 {
2193     SV *sv;
2194     SV** svp;
2195     char spid[TYPE_CHARS(int)];
2196
2197     if (!pid)
2198         return -1;
2199     if (pid > 0) {
2200         sprintf(spid, "%d", pid);
2201         svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2202         if (svp && *svp != &PL_sv_undef) {
2203             *statusp = SvIVX(*svp);
2204             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2205             return pid;
2206         }
2207     }
2208     else {
2209         HE *entry;
2210
2211         hv_iterinit(PL_pidstatus);
2212         if (entry = hv_iternext(PL_pidstatus)) {
2213             pid = atoi(hv_iterkey(entry,(I32*)statusp));
2214             sv = hv_iterval(PL_pidstatus,entry);
2215             *statusp = SvIVX(sv);
2216             sprintf(spid, "%d", pid);
2217             (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2218             return pid;
2219         }
2220     }
2221 #ifdef HAS_WAITPID
2222 #  ifdef HAS_WAITPID_RUNTIME
2223     if (!HAS_WAITPID_RUNTIME)
2224         goto hard_way;
2225 #  endif
2226     return PerlProc_waitpid(pid,statusp,flags);
2227 #endif
2228 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2229     return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2230 #endif
2231 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2232   hard_way:
2233     {
2234         I32 result;
2235         if (flags)
2236             croak("Can't do waitpid with flags");
2237         else {
2238             while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2239                 pidgone(result,*statusp);
2240             if (result < 0)
2241                 *statusp = -1;
2242         }
2243         return result;
2244     }
2245 #endif
2246 }
2247 #endif /* !DOSISH || OS2 || WIN32 */
2248
2249 void
2250 /*SUPPRESS 590*/
2251 pidgone(int pid, int status)
2252 {
2253     register SV *sv;
2254     char spid[TYPE_CHARS(int)];
2255
2256     sprintf(spid, "%d", pid);
2257     sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2258     (void)SvUPGRADE(sv,SVt_IV);
2259     SvIVX(sv) = status;
2260     return;
2261 }
2262
2263 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2264 int pclose();
2265 #ifdef HAS_FORK
2266 int                                     /* Cannot prototype with I32
2267                                            in os2ish.h. */
2268 my_syspclose(ptr)
2269 #else
2270 I32
2271 my_pclose(ptr)
2272 #endif 
2273 PerlIO *ptr;
2274 {
2275     /* Needs work for PerlIO ! */
2276     FILE *f = PerlIO_findFILE(ptr);
2277     I32 result = pclose(f);
2278     PerlIO_releaseFILE(ptr,f);
2279     return result;
2280 }
2281 #endif
2282
2283 void
2284 repeatcpy(register char *to, register char *from, I32 len, register I32 count)
2285 {
2286     register I32 todo;
2287     register char *frombase = from;
2288
2289     if (len == 1) {
2290         todo = *from;
2291         while (count-- > 0)
2292             *to++ = todo;
2293         return;
2294     }
2295     while (count-- > 0) {
2296         for (todo = len; todo > 0; todo--) {
2297             *to++ = *from++;
2298         }
2299         from = frombase;
2300     }
2301 }
2302
2303 #ifndef CASTNEGFLOAT
2304 U32
2305 cast_ulong(f)
2306 double f;
2307 {
2308     long along;
2309
2310 #if CASTFLAGS & 2
2311 #   define BIGDOUBLE 2147483648.0
2312     if (f >= BIGDOUBLE)
2313         return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2314 #endif
2315     if (f >= 0.0)
2316         return (unsigned long)f;
2317     along = (long)f;
2318     return (unsigned long)along;
2319 }
2320 # undef BIGDOUBLE
2321 #endif
2322
2323 #ifndef CASTI32
2324
2325 /* Unfortunately, on some systems the cast_uv() function doesn't
2326    work with the system-supplied definition of ULONG_MAX.  The
2327    comparison  (f >= ULONG_MAX) always comes out true.  It must be a
2328    problem with the compiler constant folding.
2329
2330    In any case, this workaround should be fine on any two's complement
2331    system.  If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2332    ccflags.
2333                --Andy Dougherty      <doughera@lafcol.lafayette.edu>
2334 */
2335
2336 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2337    of LONG_(MIN/MAX).
2338                            -- Kenneth Albanowski <kjahds@kjahds.com>
2339 */                                      
2340
2341 #ifndef MY_UV_MAX
2342 #  define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2343 #endif
2344
2345 I32
2346 cast_i32(f)
2347 double f;
2348 {
2349     if (f >= I32_MAX)
2350         return (I32) I32_MAX;
2351     if (f <= I32_MIN)
2352         return (I32) I32_MIN;
2353     return (I32) f;
2354 }
2355
2356 IV
2357 cast_iv(f)
2358 double f;
2359 {
2360     if (f >= IV_MAX)
2361         return (IV) IV_MAX;
2362     if (f <= IV_MIN)
2363         return (IV) IV_MIN;
2364     return (IV) f;
2365 }
2366
2367 UV
2368 cast_uv(f)
2369 double f;
2370 {
2371     if (f >= MY_UV_MAX)
2372         return (UV) MY_UV_MAX;
2373     return (UV) f;
2374 }
2375
2376 #endif
2377
2378 #ifndef HAS_RENAME
2379 I32
2380 same_dirent(a,b)
2381 char *a;
2382 char *b;
2383 {
2384     char *fa = strrchr(a,'/');
2385     char *fb = strrchr(b,'/');
2386     struct stat tmpstatbuf1;
2387     struct stat tmpstatbuf2;
2388     SV *tmpsv = sv_newmortal();
2389
2390     if (fa)
2391         fa++;
2392     else
2393         fa = a;
2394     if (fb)
2395         fb++;
2396     else
2397         fb = b;
2398     if (strNE(a,b))
2399         return FALSE;
2400     if (fa == a)
2401         sv_setpv(tmpsv, ".");
2402     else
2403         sv_setpvn(tmpsv, a, fa - a);
2404     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2405         return FALSE;
2406     if (fb == b)
2407         sv_setpv(tmpsv, ".");
2408     else
2409         sv_setpvn(tmpsv, b, fb - b);
2410     if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2411         return FALSE;
2412     return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2413            tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2414 }
2415 #endif /* !HAS_RENAME */
2416
2417 UV
2418 scan_oct(char *start, I32 len, I32 *retlen)
2419 {
2420     register char *s = start;
2421     register UV retval = 0;
2422     bool overflowed = FALSE;
2423
2424     while (len && *s >= '0' && *s <= '7') {
2425         register UV n = retval << 3;
2426         if (!overflowed && (n >> 3) != retval) {
2427             warn("Integer overflow in octal number");
2428             overflowed = TRUE;
2429         }
2430         retval = n | (*s++ - '0');
2431         len--;
2432     }
2433     if (len && (*s == '8' || *s == '9')) {
2434         dTHR;
2435         if (ckWARN(WARN_OCTAL))
2436             warner(WARN_OCTAL, "Illegal octal digit ignored");
2437     }
2438     *retlen = s - start;
2439     return retval;
2440 }
2441
2442 UV
2443 scan_hex(char *start, I32 len, I32 *retlen)
2444 {
2445     register char *s = start;
2446     register UV retval = 0;
2447     bool overflowed = FALSE;
2448     char *tmp = s;
2449     register UV n;
2450
2451     while (len-- && *s) {
2452         tmp = strchr((char *) PL_hexdigit, *s++);
2453         if (!tmp) {
2454             if (*s == '_')
2455                 continue;
2456             else {
2457                 dTHR;
2458                 --s;
2459                 if (ckWARN(WARN_UNSAFE))
2460                     warner(WARN_UNSAFE,"Illegal hex digit ignored");
2461                 break;
2462             }
2463         }
2464         n = retval << 4;
2465         if (!overflowed && (n >> 4) != retval) {
2466             warn("Integer overflow in hex number");
2467             overflowed = TRUE;
2468         }
2469         retval = n | ((tmp - PL_hexdigit) & 15);
2470     }
2471     *retlen = s - start;
2472     return retval;
2473 }
2474
2475 char*
2476 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2477 {
2478     dTHR;
2479     char *xfound = Nullch;
2480     char *xfailed = Nullch;
2481     char tmpbuf[512];
2482     register char *s;
2483     I32 len;
2484     int retval;
2485 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2486 #  define SEARCH_EXTS ".bat", ".cmd", NULL
2487 #  define MAX_EXT_LEN 4
2488 #endif
2489 #ifdef OS2
2490 #  define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2491 #  define MAX_EXT_LEN 4
2492 #endif
2493 #ifdef VMS
2494 #  define SEARCH_EXTS ".pl", ".com", NULL
2495 #  define MAX_EXT_LEN 4
2496 #endif
2497     /* additional extensions to try in each dir if scriptname not found */
2498 #ifdef SEARCH_EXTS
2499     char *exts[] = { SEARCH_EXTS };
2500     char **ext = search_ext ? search_ext : exts;
2501     int extidx = 0, i = 0;
2502     char *curext = Nullch;
2503 #else
2504 #  define MAX_EXT_LEN 0
2505 #endif
2506
2507     /*
2508      * If dosearch is true and if scriptname does not contain path
2509      * delimiters, search the PATH for scriptname.
2510      *
2511      * If SEARCH_EXTS is also defined, will look for each
2512      * scriptname{SEARCH_EXTS} whenever scriptname is not found
2513      * while searching the PATH.
2514      *
2515      * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2516      * proceeds as follows:
2517      *   If DOSISH or VMSISH:
2518      *     + look for ./scriptname{,.foo,.bar}
2519      *     + search the PATH for scriptname{,.foo,.bar}
2520      *
2521      *   If !DOSISH:
2522      *     + look *only* in the PATH for scriptname{,.foo,.bar} (note
2523      *       this will not look in '.' if it's not in the PATH)
2524      */
2525     tmpbuf[0] = '\0';
2526
2527 #ifdef VMS
2528 #  ifdef ALWAYS_DEFTYPES
2529     len = strlen(scriptname);
2530     if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2531         int hasdir, idx = 0, deftypes = 1;
2532         bool seen_dot = 1;
2533
2534         hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2535 #  else
2536     if (dosearch) {
2537         int hasdir, idx = 0, deftypes = 1;
2538         bool seen_dot = 1;
2539
2540         hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2541 #  endif
2542         /* The first time through, just add SEARCH_EXTS to whatever we
2543          * already have, so we can check for default file types. */
2544         while (deftypes ||
2545                (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2546         {
2547             if (deftypes) {
2548                 deftypes = 0;
2549                 *tmpbuf = '\0';
2550             }
2551             if ((strlen(tmpbuf) + strlen(scriptname)
2552                  + MAX_EXT_LEN) >= sizeof tmpbuf)
2553                 continue;       /* don't search dir with too-long name */
2554             strcat(tmpbuf, scriptname);
2555 #else  /* !VMS */
2556
2557 #ifdef DOSISH
2558     if (strEQ(scriptname, "-"))
2559         dosearch = 0;
2560     if (dosearch) {             /* Look in '.' first. */
2561         char *cur = scriptname;
2562 #ifdef SEARCH_EXTS
2563         if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2564             while (ext[i])
2565                 if (strEQ(ext[i++],curext)) {
2566                     extidx = -1;                /* already has an ext */
2567                     break;
2568                 }
2569         do {
2570 #endif
2571             DEBUG_p(PerlIO_printf(Perl_debug_log,
2572                                   "Looking for %s\n",cur));
2573             if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2574                 && !S_ISDIR(PL_statbuf.st_mode)) {
2575                 dosearch = 0;
2576                 scriptname = cur;
2577 #ifdef SEARCH_EXTS
2578                 break;
2579 #endif
2580             }
2581 #ifdef SEARCH_EXTS
2582             if (cur == scriptname) {
2583                 len = strlen(scriptname);
2584                 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2585                     break;
2586                 cur = strcpy(tmpbuf, scriptname);
2587             }
2588         } while (extidx >= 0 && ext[extidx]     /* try an extension? */
2589                  && strcpy(tmpbuf+len, ext[extidx++]));
2590 #endif
2591     }
2592 #endif
2593
2594     if (dosearch && !strchr(scriptname, '/')
2595 #ifdef DOSISH
2596                  && !strchr(scriptname, '\\')
2597 #endif
2598                  && (s = PerlEnv_getenv("PATH"))) {
2599         bool seen_dot = 0;
2600         
2601         PL_bufend = s + strlen(s);
2602         while (s < PL_bufend) {
2603 #if defined(atarist) || defined(DOSISH)
2604             for (len = 0; *s
2605 #  ifdef atarist
2606                     && *s != ','
2607 #  endif
2608                     && *s != ';'; len++, s++) {
2609                 if (len < sizeof tmpbuf)
2610                     tmpbuf[len] = *s;
2611             }
2612             if (len < sizeof tmpbuf)
2613                 tmpbuf[len] = '\0';
2614 #else  /* ! (atarist || DOSISH) */
2615             s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2616                         ':',
2617                         &len);
2618 #endif /* ! (atarist || DOSISH) */
2619             if (s < PL_bufend)
2620                 s++;
2621             if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
2622                 continue;       /* don't search dir with too-long name */
2623             if (len
2624 #if defined(atarist) || defined(DOSISH)
2625                 && tmpbuf[len - 1] != '/'
2626                 && tmpbuf[len - 1] != '\\'
2627 #endif
2628                )
2629                 tmpbuf[len++] = '/';
2630             if (len == 2 && tmpbuf[0] == '.')
2631                 seen_dot = 1;
2632             (void)strcpy(tmpbuf + len, scriptname);
2633 #endif  /* !VMS */
2634
2635 #ifdef SEARCH_EXTS
2636             len = strlen(tmpbuf);
2637             if (extidx > 0)     /* reset after previous loop */
2638                 extidx = 0;
2639             do {
2640 #endif
2641                 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
2642                 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
2643                 if (S_ISDIR(PL_statbuf.st_mode)) {
2644                     retval = -1;
2645                 }
2646 #ifdef SEARCH_EXTS
2647             } while (  retval < 0               /* not there */
2648                     && extidx>=0 && ext[extidx] /* try an extension? */
2649                     && strcpy(tmpbuf+len, ext[extidx++])
2650                 );
2651 #endif
2652             if (retval < 0)
2653                 continue;
2654             if (S_ISREG(PL_statbuf.st_mode)
2655                 && cando(S_IRUSR,TRUE,&PL_statbuf)
2656 #ifndef DOSISH
2657                 && cando(S_IXUSR,TRUE,&PL_statbuf)
2658 #endif
2659                 )
2660             {
2661                 xfound = tmpbuf;              /* bingo! */
2662                 break;
2663             }
2664             if (!xfailed)
2665                 xfailed = savepv(tmpbuf);
2666         }
2667 #ifndef DOSISH
2668         if (!xfound && !seen_dot && !xfailed &&
2669             (PerlLIO_stat(scriptname,&PL_statbuf) < 0 
2670              || S_ISDIR(PL_statbuf.st_mode)))
2671 #endif
2672             seen_dot = 1;                       /* Disable message. */
2673         if (!xfound) {
2674             if (flags & 1) {                    /* do or die? */
2675                 croak("Can't %s %s%s%s",
2676                       (xfailed ? "execute" : "find"),
2677                       (xfailed ? xfailed : scriptname),
2678                       (xfailed ? "" : " on PATH"),
2679                       (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2680             }
2681             scriptname = Nullch;
2682         }
2683         if (xfailed)
2684             Safefree(xfailed);
2685         scriptname = xfound;
2686     }
2687     return (scriptname ? savepv(scriptname) : Nullch);
2688 }
2689
2690
2691 #ifdef USE_THREADS
2692 #ifdef FAKE_THREADS
2693 /* Very simplistic scheduler for now */
2694 void
2695 schedule(void)
2696 {
2697     thr = thr->i.next_run;
2698 }
2699
2700 void
2701 perl_cond_init(cp)
2702 perl_cond *cp;
2703 {
2704     *cp = 0;
2705 }
2706
2707 void
2708 perl_cond_signal(cp)
2709 perl_cond *cp;
2710 {
2711     perl_os_thread t;
2712     perl_cond cond = *cp;
2713     
2714     if (!cond)
2715         return;
2716     t = cond->thread;
2717     /* Insert t in the runnable queue just ahead of us */
2718     t->i.next_run = thr->i.next_run;
2719     thr->i.next_run->i.prev_run = t;
2720     t->i.prev_run = thr;
2721     thr->i.next_run = t;
2722     thr->i.wait_queue = 0;
2723     /* Remove from the wait queue */
2724     *cp = cond->next;
2725     Safefree(cond);
2726 }
2727
2728 void
2729 perl_cond_broadcast(cp)
2730 perl_cond *cp;
2731 {
2732     perl_os_thread t;
2733     perl_cond cond, cond_next;
2734     
2735     for (cond = *cp; cond; cond = cond_next) {
2736         t = cond->thread;
2737         /* Insert t in the runnable queue just ahead of us */
2738         t->i.next_run = thr->i.next_run;
2739         thr->i.next_run->i.prev_run = t;
2740         t->i.prev_run = thr;
2741         thr->i.next_run = t;
2742         thr->i.wait_queue = 0;
2743         /* Remove from the wait queue */
2744         cond_next = cond->next;
2745         Safefree(cond);
2746     }
2747     *cp = 0;
2748 }
2749
2750 void
2751 perl_cond_wait(cp)
2752 perl_cond *cp;
2753 {
2754     perl_cond cond;
2755
2756     if (thr->i.next_run == thr)
2757         croak("panic: perl_cond_wait called by last runnable thread");
2758     
2759     New(666, cond, 1, struct perl_wait_queue);
2760     cond->thread = thr;
2761     cond->next = *cp;
2762     *cp = cond;
2763     thr->i.wait_queue = cond;
2764     /* Remove ourselves from runnable queue */
2765     thr->i.next_run->i.prev_run = thr->i.prev_run;
2766     thr->i.prev_run->i.next_run = thr->i.next_run;
2767 }
2768 #endif /* FAKE_THREADS */
2769
2770 #ifdef OLD_PTHREADS_API
2771 struct perl_thread *
2772 getTHR _((void))
2773 {
2774     pthread_addr_t t;
2775
2776     if (pthread_getspecific(PL_thr_key, &t))
2777         croak("panic: pthread_getspecific");
2778     return (struct perl_thread *) t;
2779 }
2780 #endif /* OLD_PTHREADS_API */
2781
2782 MAGIC *
2783 condpair_magic(SV *sv)
2784 {
2785     MAGIC *mg;
2786     
2787     SvUPGRADE(sv, SVt_PVMG);
2788     mg = mg_find(sv, 'm');
2789     if (!mg) {
2790         condpair_t *cp;
2791
2792         New(53, cp, 1, condpair_t);
2793         MUTEX_INIT(&cp->mutex);
2794         COND_INIT(&cp->owner_cond);
2795         COND_INIT(&cp->cond);
2796         cp->owner = 0;
2797         LOCK_SV_MUTEX;
2798         mg = mg_find(sv, 'm');
2799         if (mg) {
2800             /* someone else beat us to initialising it */
2801             UNLOCK_SV_MUTEX;
2802             MUTEX_DESTROY(&cp->mutex);
2803             COND_DESTROY(&cp->owner_cond);
2804             COND_DESTROY(&cp->cond);
2805             Safefree(cp);
2806         }
2807         else {
2808             sv_magic(sv, Nullsv, 'm', 0, 0);
2809             mg = SvMAGIC(sv);
2810             mg->mg_ptr = (char *)cp;
2811             mg->mg_len = sizeof(cp);
2812             UNLOCK_SV_MUTEX;
2813             DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
2814                                            "%p: condpair_magic %p\n", thr, sv));)
2815         }
2816     }
2817     return mg;
2818 }
2819
2820 /*
2821  * Make a new perl thread structure using t as a prototype. Some of the
2822  * fields for the new thread are copied from the prototype thread, t,
2823  * so t should not be running in perl at the time this function is
2824  * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2825  * thread calling new_struct_thread) clearly satisfies this constraint.
2826  */
2827 struct perl_thread *
2828 new_struct_thread(struct perl_thread *t)
2829 {
2830     struct perl_thread *thr;
2831     SV *sv;
2832     SV **svp;
2833     I32 i;
2834
2835     sv = newSVpv("", 0);
2836     SvGROW(sv, sizeof(struct perl_thread) + 1);
2837     SvCUR_set(sv, sizeof(struct perl_thread));
2838     thr = (Thread) SvPVX(sv);
2839 #ifdef DEBUGGING
2840     memset(thr, 0xab, sizeof(struct perl_thread));
2841     PL_markstack = 0;
2842     PL_scopestack = 0;
2843     PL_savestack = 0;
2844     PL_retstack = 0;
2845     PL_dirty = 0;
2846     PL_localizing = 0;
2847     Zero(&PL_hv_fetch_ent_mh, 1, HE);
2848 #else
2849     Zero(thr, 1, struct perl_thread);
2850 #endif
2851
2852     thr->oursv = sv;
2853     init_stacks(ARGS);
2854
2855     PL_curcop = &PL_compiling;
2856     thr->cvcache = newHV();
2857     thr->threadsv = newAV();
2858     thr->specific = newAV();
2859     thr->errsv = newSVpv("", 0);
2860     thr->errhv = newHV();
2861     thr->flags = THRf_R_JOINABLE;
2862     MUTEX_INIT(&thr->mutex);
2863
2864     PL_curcop = t->Tcurcop;       /* XXX As good a guess as any? */
2865     PL_defstash = t->Tdefstash;   /* XXX maybe these should */
2866     PL_curstash = t->Tcurstash;   /* always be set to main? */
2867
2868
2869     /* top_env needs to be non-zero. It points to an area
2870        in which longjmp() stuff is stored, as C callstack
2871        info there at least is thread specific this has to
2872        be per-thread. Otherwise a 'die' in a thread gives
2873        that thread the C stack of last thread to do an eval {}!
2874        See comments in scope.h    
2875        Initialize top entry (as in perl.c for main thread)
2876      */
2877     PL_start_env.je_prev = NULL;
2878     PL_start_env.je_ret = -1;
2879     PL_start_env.je_mustcatch = TRUE;
2880     PL_top_env  = &PL_start_env;
2881
2882     PL_in_eval = FALSE;
2883     PL_restartop = 0;
2884
2885     PL_tainted = t->Ttainted;
2886     PL_curpm = t->Tcurpm;         /* XXX No PMOP ref count */
2887     PL_nrs = newSVsv(t->Tnrs);
2888     PL_rs = SvREFCNT_inc(PL_nrs);
2889     PL_last_in_gv = Nullgv;
2890     PL_ofslen = t->Tofslen;
2891     PL_ofs = savepvn(t->Tofs, PL_ofslen);
2892     PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2893     PL_chopset = t->Tchopset;
2894     PL_formtarget = newSVsv(t->Tformtarget);
2895     PL_bodytarget = newSVsv(t->Tbodytarget);
2896     PL_toptarget = newSVsv(t->Ttoptarget);
2897
2898     PL_statname = NEWSV(66,0);
2899     PL_maxscream = -1;
2900     PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
2901     PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
2902     PL_regindent = 0;
2903     PL_reginterp_cnt = 0;
2904     PL_lastscream = Nullsv;
2905     PL_screamfirst = 0;
2906     PL_screamnext = 0;
2907     PL_reg_start_tmp = 0;
2908     PL_reg_start_tmpl = 0;
2909     
2910     /* Initialise all per-thread SVs that the template thread used */
2911     svp = AvARRAY(t->threadsv);
2912     for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
2913         if (*svp && *svp != &PL_sv_undef) {
2914             SV *sv = newSVsv(*svp);
2915             av_store(thr->threadsv, i, sv);
2916             sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
2917             DEBUG_S(PerlIO_printf(PerlIO_stderr(),
2918                 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
2919         }
2920     } 
2921     thr->threadsvp = AvARRAY(thr->threadsv);
2922
2923     MUTEX_LOCK(&PL_threads_mutex);
2924     PL_nthreads++;
2925     thr->tid = ++PL_threadnum;
2926     thr->next = t->next;
2927     thr->prev = t;
2928     t->next = thr;
2929     thr->next->prev = thr;
2930     MUTEX_UNLOCK(&PL_threads_mutex);
2931
2932 #ifdef HAVE_THREAD_INTERN
2933     init_thread_intern(thr);
2934 #endif /* HAVE_THREAD_INTERN */
2935     return thr;
2936 }
2937 #endif /* USE_THREADS */
2938
2939 #ifdef HUGE_VAL
2940 /*
2941  * This hack is to force load of "huge" support from libm.a
2942  * So it is in perl for (say) POSIX to use. 
2943  * Needed for SunOS with Sun's 'acc' for example.
2944  */
2945 double 
2946 Perl_huge(void)
2947 {
2948  return HUGE_VAL;
2949 }
2950 #endif
2951
2952 #ifdef PERL_GLOBAL_STRUCT
2953 struct perl_vars *
2954 Perl_GetVars(void)
2955 {
2956  return &PL_Vars;
2957 }
2958 #endif
2959
2960 char **
2961 get_op_names(void)
2962 {
2963  return op_name;
2964 }
2965
2966 char **
2967 get_op_descs(void)
2968 {
2969  return op_desc;
2970 }
2971
2972 char *
2973 get_no_modify(void)
2974 {
2975  return (char*)no_modify;
2976 }
2977
2978 U32 *
2979 get_opargs(void)
2980 {
2981  return opargs;
2982 }
2983
2984
2985 SV **
2986 get_specialsv_list(void)
2987 {
2988  return PL_specialsv_list;
2989 }