3 * Copyright (c) 1991-1999, Larry Wall
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.
11 * "Very useful, no doubt, that was to Saruman; yet it seems that he was
12 * not content." --Gandalf
18 #if !defined(NSIG) || defined(M_UNIX) || defined(M_XENIX)
23 # define SIG_ERR ((Sighandler_t) -1)
26 /* XXX If this causes problems, set i_unistd=undef in the hint file. */
35 /* Put this after #includes because fork and vfork prototypes may
46 # include <sys/file.h>
50 # include <sys/wait.h>
57 static void xstat _((int));
58 long xcount[MAXXCOUNT];
59 long lastxcount[MAXXCOUNT];
60 long xycount[MAXXCOUNT][MAXYCOUNT];
61 long lastxycount[MAXXCOUNT][MAXYCOUNT];
65 /* paranoid version of system's malloc() */
67 /* NOTE: Do not call the next three routines directly. Use the macros
68 * in handy.h, so that we can easily redefine everything to do tracking of
69 * allocated hunks back to the original New to track down any memory leaks.
70 * XXX This advice seems to be widely ignored :-( --AD August 1996.
74 safesysmalloc(MEM_SIZE size)
79 PerlIO_printf(PerlIO_stderr(), "Allocation too large: %lx\n", size) FLUSH;
82 #endif /* HAS_64K_LIMIT */
85 croak("panic: malloc");
87 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
88 #if !(defined(I286) || defined(atarist))
89 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
91 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) malloc %ld bytes\n",ptr,PL_an++,(long)size));
98 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
105 /* paranoid version of system's realloc() */
108 safesysrealloc(Malloc_t where,MEM_SIZE size)
111 #if !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE)
112 Malloc_t PerlMem_realloc();
113 #endif /* !defined(STANDARD_C) && !defined(HAS_REALLOC_PROTOTYPE) */
117 PerlIO_printf(PerlIO_stderr(),
118 "Reallocation too large: %lx\n", size) FLUSH;
121 #endif /* HAS_64K_LIMIT */
128 return safesysmalloc(size);
131 croak("panic: realloc");
133 ptr = PerlMem_realloc(where,size);
135 #if !(defined(I286) || defined(atarist))
137 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) rfree\n",where,PL_an++);
138 PerlIO_printf(Perl_debug_log, "0x%x: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
142 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) rfree\n",where,PL_an++);
143 PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) realloc %ld bytes\n",ptr,PL_an++,(long)size);
152 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
159 /* safe version of system's free() */
162 safesysfree(Malloc_t where)
164 #if !(defined(I286) || defined(atarist))
165 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%x: (%05d) free\n",(char *) where,PL_an++));
167 DEBUG_m( PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) free\n",(char *) where,PL_an++));
175 /* safe version of system's calloc() */
178 safesyscalloc(MEM_SIZE count, MEM_SIZE size)
183 if (size * count > 0xffff) {
184 PerlIO_printf(PerlIO_stderr(),
185 "Allocation too large: %lx\n", size * count) FLUSH;
188 #endif /* HAS_64K_LIMIT */
190 if ((long)size < 0 || (long)count < 0)
191 croak("panic: calloc");
194 ptr = PerlMem_malloc(size?size:1); /* malloc(0) is NASTY on our system */
195 #if !(defined(I286) || defined(atarist))
196 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%x: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
198 DEBUG_m(PerlIO_printf(Perl_debug_log, "0x%lx: (%05d) calloc %ld x %ld bytes\n",ptr,PL_an++,(long)count,(long)size));
201 memset((void*)ptr, 0, size);
207 PerlIO_puts(PerlIO_stderr(),PL_no_mem) FLUSH;
216 struct mem_test_strut {
224 # define ALIGN sizeof(struct mem_test_strut)
226 # define sizeof_chunk(ch) (((struct mem_test_strut*) (ch))->size)
227 # define typeof_chunk(ch) \
228 (((struct mem_test_strut*) (ch))->u.c[0] + ((struct mem_test_strut*) (ch))->u.c[1]*100)
229 # define set_typeof_chunk(ch,t) \
230 (((struct mem_test_strut*) (ch))->u.c[0] = t % 100, ((struct mem_test_strut*) (ch))->u.c[1] = t / 100)
231 #define SIZE_TO_Y(size) ( (size) > MAXY_SIZE \
234 ? ((size) - 1)/8 + 5 \
238 safexmalloc(I32 x, MEM_SIZE size)
240 register char* where = (char*)safemalloc(size + ALIGN);
243 xycount[x][SIZE_TO_Y(size)]++;
244 set_typeof_chunk(where, x);
245 sizeof_chunk(where) = size;
246 return (Malloc_t)(where + ALIGN);
250 safexrealloc(Malloc_t wh, MEM_SIZE size)
252 char *where = (char*)wh;
255 return safexmalloc(0,size);
258 MEM_SIZE old = sizeof_chunk(where - ALIGN);
259 int t = typeof_chunk(where - ALIGN);
260 register char* new = (char*)saferealloc(where - ALIGN, size + ALIGN);
262 xycount[t][SIZE_TO_Y(old)]--;
263 xycount[t][SIZE_TO_Y(size)]++;
264 xcount[t] += size - old;
265 sizeof_chunk(new) = size;
266 return (Malloc_t)(new + ALIGN);
271 safexfree(Malloc_t wh)
274 char *where = (char*)wh;
280 size = sizeof_chunk(where);
281 x = where[0] + 100 * where[1];
283 xycount[x][SIZE_TO_Y(size)]--;
288 safexcalloc(I32 x,MEM_SIZE count, MEM_SIZE size)
290 register char * where = (char*)safexmalloc(x, size * count + ALIGN);
292 xycount[x][SIZE_TO_Y(size)]++;
293 memset((void*)(where + ALIGN), 0, size * count);
294 set_typeof_chunk(where, x);
295 sizeof_chunk(where) = size;
296 return (Malloc_t)(where + ALIGN);
302 register I32 i, j, total = 0;
303 I32 subtot[MAXYCOUNT];
305 for (j = 0; j < MAXYCOUNT; j++) {
309 PerlIO_printf(PerlIO_stderr(), " Id subtot 4 8 12 16 20 24 28 32 36 40 48 56 64 72 80 80+\n", total);
310 for (i = 0; i < MAXXCOUNT; i++) {
312 for (j = 0; j < MAXYCOUNT; j++) {
313 subtot[j] += xycount[i][j];
316 ? xcount[i] /* Have something */
318 ? xcount[i] != lastxcount[i] /* Changed */
319 : xcount[i] > lastxcount[i])) { /* Growed */
320 PerlIO_printf(PerlIO_stderr(),"%2d %02d %7ld ", i / 100, i % 100,
321 flag == 2 ? xcount[i] - lastxcount[i] : xcount[i]);
322 lastxcount[i] = xcount[i];
323 for (j = 0; j < MAXYCOUNT; j++) {
325 ? xycount[i][j] /* Have something */
327 ? xycount[i][j] != lastxycount[i][j] /* Changed */
328 : xycount[i][j] > lastxycount[i][j])) { /* Growed */
329 PerlIO_printf(PerlIO_stderr(),"%3ld ",
331 ? xycount[i][j] - lastxycount[i][j]
333 lastxycount[i][j] = xycount[i][j];
335 PerlIO_printf(PerlIO_stderr(), " . ", xycount[i][j]);
338 PerlIO_printf(PerlIO_stderr(), "\n");
342 PerlIO_printf(PerlIO_stderr(), "Total %7ld ", total);
343 for (j = 0; j < MAXYCOUNT; j++) {
345 PerlIO_printf(PerlIO_stderr(), "%3ld ", subtot[j]);
347 PerlIO_printf(PerlIO_stderr(), " . ");
350 PerlIO_printf(PerlIO_stderr(), "\n");
354 #endif /* LEAKTEST */
356 /* copy a string up to some (non-backslashed) delimiter, if any */
359 delimcpy(register char *to, register char *toend, register char *from, register char *fromend, register int delim, I32 *retlen)
362 for (tolen = 0; from < fromend; from++, tolen++) {
364 if (from[1] == delim)
373 else if (*from == delim)
384 /* return ptr to little string in big string, NULL if not found */
385 /* This routine was donated by Corey Satten. */
388 instr(register const char *big, register const char *little)
390 register const char *s, *x;
401 for (x=big,s=little; *s; /**/ ) {
410 return (char*)(big-1);
415 /* same as instr but allow embedded nulls */
418 ninstr(register const char *big, register const char *bigend, const char *little, const char *lend)
420 register const char *s, *x;
421 register I32 first = *little;
422 register const char *littleend = lend;
424 if (!first && little >= littleend)
426 if (bigend - big < littleend - little)
428 bigend -= littleend - little++;
429 while (big <= bigend) {
432 for (x=big,s=little; s < littleend; /**/ ) {
439 return (char*)(big-1);
444 /* reverse of the above--find last substring */
447 rninstr(register const char *big, const char *bigend, const char *little, const char *lend)
449 register const char *bigbeg;
450 register const char *s, *x;
451 register I32 first = *little;
452 register const char *littleend = lend;
454 if (!first && little >= littleend)
455 return (char*)bigend;
457 big = bigend - (littleend - little++);
458 while (big >= bigbeg) {
461 for (x=big+2,s=little; s < littleend; /**/ ) {
468 return (char*)(big+1);
474 * Set up for a new ctype locale.
477 perl_new_ctype(const char *newctype)
479 #ifdef USE_LOCALE_CTYPE
483 for (i = 0; i < 256; i++) {
485 PL_fold_locale[i] = toLOWER_LC(i);
486 else if (isLOWER_LC(i))
487 PL_fold_locale[i] = toUPPER_LC(i);
489 PL_fold_locale[i] = i;
492 #endif /* USE_LOCALE_CTYPE */
496 * Set up for a new collation locale.
499 perl_new_collate(const char *newcoll)
501 #ifdef USE_LOCALE_COLLATE
504 if (PL_collation_name) {
506 Safefree(PL_collation_name);
507 PL_collation_name = NULL;
508 PL_collation_standard = TRUE;
509 PL_collxfrm_base = 0;
510 PL_collxfrm_mult = 2;
515 if (! PL_collation_name || strNE(PL_collation_name, newcoll)) {
517 Safefree(PL_collation_name);
518 PL_collation_name = savepv(newcoll);
519 PL_collation_standard = (strEQ(newcoll, "C") || strEQ(newcoll, "POSIX"));
522 /* 2: at most so many chars ('a', 'b'). */
523 /* 50: surely no system expands a char more. */
524 #define XFRMBUFSIZE (2 * 50)
525 char xbuf[XFRMBUFSIZE];
526 Size_t fa = strxfrm(xbuf, "a", XFRMBUFSIZE);
527 Size_t fb = strxfrm(xbuf, "ab", XFRMBUFSIZE);
528 SSize_t mult = fb - fa;
530 croak("strxfrm() gets absurd");
531 PL_collxfrm_base = (fa > mult) ? (fa - mult) : 0;
532 PL_collxfrm_mult = mult;
536 #endif /* USE_LOCALE_COLLATE */
540 * Set up for a new numeric locale.
543 perl_new_numeric(const char *newnum)
545 #ifdef USE_LOCALE_NUMERIC
548 if (PL_numeric_name) {
549 Safefree(PL_numeric_name);
550 PL_numeric_name = NULL;
551 PL_numeric_standard = TRUE;
552 PL_numeric_local = TRUE;
557 if (! PL_numeric_name || strNE(PL_numeric_name, newnum)) {
558 Safefree(PL_numeric_name);
559 PL_numeric_name = savepv(newnum);
560 PL_numeric_standard = (strEQ(newnum, "C") || strEQ(newnum, "POSIX"));
561 PL_numeric_local = TRUE;
564 #endif /* USE_LOCALE_NUMERIC */
568 perl_set_numeric_standard(void)
570 #ifdef USE_LOCALE_NUMERIC
572 if (! PL_numeric_standard) {
573 setlocale(LC_NUMERIC, "C");
574 PL_numeric_standard = TRUE;
575 PL_numeric_local = FALSE;
578 #endif /* USE_LOCALE_NUMERIC */
582 perl_set_numeric_local(void)
584 #ifdef USE_LOCALE_NUMERIC
586 if (! PL_numeric_local) {
587 setlocale(LC_NUMERIC, PL_numeric_name);
588 PL_numeric_standard = FALSE;
589 PL_numeric_local = TRUE;
592 #endif /* USE_LOCALE_NUMERIC */
597 * Initialize locale awareness.
600 perl_init_i18nl10n(int printwarn)
604 * 1 = set ok or not applicable,
605 * 0 = fallback to C locale,
606 * -1 = fallback to C locale failed
611 #ifdef USE_LOCALE_CTYPE
612 char *curctype = NULL;
613 #endif /* USE_LOCALE_CTYPE */
614 #ifdef USE_LOCALE_COLLATE
615 char *curcoll = NULL;
616 #endif /* USE_LOCALE_COLLATE */
617 #ifdef USE_LOCALE_NUMERIC
619 #endif /* USE_LOCALE_NUMERIC */
621 char *language = PerlEnv_getenv("LANGUAGE");
623 char *lc_all = PerlEnv_getenv("LC_ALL");
624 char *lang = PerlEnv_getenv("LANG");
625 bool setlocale_failure = FALSE;
627 #ifdef LOCALE_ENVIRON_REQUIRED
630 * Ultrix setlocale(..., "") fails if there are no environment
631 * variables from which to get a locale name.
638 if (setlocale(LC_ALL, ""))
641 setlocale_failure = TRUE;
643 if (!setlocale_failure) {
644 #ifdef USE_LOCALE_CTYPE
647 (!done && (lang || PerlEnv_getenv("LC_CTYPE")))
649 setlocale_failure = TRUE;
650 #endif /* USE_LOCALE_CTYPE */
651 #ifdef USE_LOCALE_COLLATE
653 setlocale(LC_COLLATE,
654 (!done && (lang || PerlEnv_getenv("LC_COLLATE")))
656 setlocale_failure = TRUE;
657 #endif /* USE_LOCALE_COLLATE */
658 #ifdef USE_LOCALE_NUMERIC
660 setlocale(LC_NUMERIC,
661 (!done && (lang || PerlEnv_getenv("LC_NUMERIC")))
663 setlocale_failure = TRUE;
664 #endif /* USE_LOCALE_NUMERIC */
669 #endif /* !LOCALE_ENVIRON_REQUIRED */
672 if (! setlocale(LC_ALL, ""))
673 setlocale_failure = TRUE;
676 if (!setlocale_failure) {
677 #ifdef USE_LOCALE_CTYPE
678 if (! (curctype = setlocale(LC_CTYPE, "")))
679 setlocale_failure = TRUE;
680 #endif /* USE_LOCALE_CTYPE */
681 #ifdef USE_LOCALE_COLLATE
682 if (! (curcoll = setlocale(LC_COLLATE, "")))
683 setlocale_failure = TRUE;
684 #endif /* USE_LOCALE_COLLATE */
685 #ifdef USE_LOCALE_NUMERIC
686 if (! (curnum = setlocale(LC_NUMERIC, "")))
687 setlocale_failure = TRUE;
688 #endif /* USE_LOCALE_NUMERIC */
691 if (setlocale_failure) {
693 bool locwarn = (printwarn > 1 ||
695 (!(p = PerlEnv_getenv("PERL_BADLANG")) || atoi(p)));
700 PerlIO_printf(PerlIO_stderr(),
701 "perl: warning: Setting locale failed.\n");
705 PerlIO_printf(PerlIO_stderr(),
706 "perl: warning: Setting locale failed for the categories:\n\t");
707 #ifdef USE_LOCALE_CTYPE
709 PerlIO_printf(PerlIO_stderr(), "LC_CTYPE ");
710 #endif /* USE_LOCALE_CTYPE */
711 #ifdef USE_LOCALE_COLLATE
713 PerlIO_printf(PerlIO_stderr(), "LC_COLLATE ");
714 #endif /* USE_LOCALE_COLLATE */
715 #ifdef USE_LOCALE_NUMERIC
717 PerlIO_printf(PerlIO_stderr(), "LC_NUMERIC ");
718 #endif /* USE_LOCALE_NUMERIC */
719 PerlIO_printf(PerlIO_stderr(), "\n");
723 PerlIO_printf(PerlIO_stderr(),
724 "perl: warning: Please check that your locale settings:\n");
727 PerlIO_printf(PerlIO_stderr(),
728 "\tLANGUAGE = %c%s%c,\n",
729 language ? '"' : '(',
730 language ? language : "unset",
731 language ? '"' : ')');
734 PerlIO_printf(PerlIO_stderr(),
735 "\tLC_ALL = %c%s%c,\n",
737 lc_all ? lc_all : "unset",
742 for (e = environ; *e; e++) {
743 if (strnEQ(*e, "LC_", 3)
744 && strnNE(*e, "LC_ALL=", 7)
745 && (p = strchr(*e, '=')))
746 PerlIO_printf(PerlIO_stderr(), "\t%.*s = \"%s\",\n",
747 (int)(p - *e), *e, p + 1);
751 PerlIO_printf(PerlIO_stderr(),
754 lang ? lang : "unset",
757 PerlIO_printf(PerlIO_stderr(),
758 " are supported and installed on your system.\n");
763 if (setlocale(LC_ALL, "C")) {
765 PerlIO_printf(PerlIO_stderr(),
766 "perl: warning: Falling back to the standard locale (\"C\").\n");
771 PerlIO_printf(PerlIO_stderr(),
772 "perl: warning: Failed to fall back to the standard locale (\"C\").\n");
779 #ifdef USE_LOCALE_CTYPE
780 || !(curctype || setlocale(LC_CTYPE, "C"))
781 #endif /* USE_LOCALE_CTYPE */
782 #ifdef USE_LOCALE_COLLATE
783 || !(curcoll || setlocale(LC_COLLATE, "C"))
784 #endif /* USE_LOCALE_COLLATE */
785 #ifdef USE_LOCALE_NUMERIC
786 || !(curnum || setlocale(LC_NUMERIC, "C"))
787 #endif /* USE_LOCALE_NUMERIC */
791 PerlIO_printf(PerlIO_stderr(),
792 "perl: warning: Cannot fall back to the standard locale (\"C\").\n");
796 #endif /* ! LC_ALL */
798 #ifdef USE_LOCALE_CTYPE
799 curctype = setlocale(LC_CTYPE, Nullch);
800 #endif /* USE_LOCALE_CTYPE */
801 #ifdef USE_LOCALE_COLLATE
802 curcoll = setlocale(LC_COLLATE, Nullch);
803 #endif /* USE_LOCALE_COLLATE */
804 #ifdef USE_LOCALE_NUMERIC
805 curnum = setlocale(LC_NUMERIC, Nullch);
806 #endif /* USE_LOCALE_NUMERIC */
809 #ifdef USE_LOCALE_CTYPE
810 perl_new_ctype(curctype);
811 #endif /* USE_LOCALE_CTYPE */
813 #ifdef USE_LOCALE_COLLATE
814 perl_new_collate(curcoll);
815 #endif /* USE_LOCALE_COLLATE */
817 #ifdef USE_LOCALE_NUMERIC
818 perl_new_numeric(curnum);
819 #endif /* USE_LOCALE_NUMERIC */
821 #endif /* USE_LOCALE */
826 /* Backwards compatibility. */
828 perl_init_i18nl14n(int printwarn)
830 return perl_init_i18nl10n(printwarn);
833 #ifdef USE_LOCALE_COLLATE
836 * mem_collxfrm() is a bit like strxfrm() but with two important
837 * differences. First, it handles embedded NULs. Second, it allocates
838 * a bit more memory than needed for the transformed data itself.
839 * The real transformed data begins at offset sizeof(collationix).
840 * Please see sv_collxfrm() to see how this is used.
843 mem_collxfrm(const char *s, STRLEN len, STRLEN *xlen)
846 STRLEN xAlloc, xin, xout; /* xalloc is a reserved word in VC */
848 /* the first sizeof(collationix) bytes are used by sv_collxfrm(). */
849 /* the +1 is for the terminating NUL. */
851 xAlloc = sizeof(PL_collation_ix) + PL_collxfrm_base + (PL_collxfrm_mult * len) + 1;
852 New(171, xbuf, xAlloc, char);
856 *(U32*)xbuf = PL_collation_ix;
857 xout = sizeof(PL_collation_ix);
858 for (xin = 0; xin < len; ) {
862 xused = strxfrm(xbuf + xout, s + xin, xAlloc - xout);
865 if (xused < xAlloc - xout)
867 xAlloc = (2 * xAlloc) + 1;
868 Renew(xbuf, xAlloc, char);
873 xin += strlen(s + xin) + 1;
876 /* Embedded NULs are understood but silently skipped
877 * because they make no sense in locale collation. */
881 *xlen = xout - sizeof(PL_collation_ix);
890 #endif /* USE_LOCALE_COLLATE */
893 fbm_compile(SV *sv, U32 flags /* not used yet */)
902 s = (U8*)SvPV_force(sv, len);
903 (void)SvUPGRADE(sv, SVt_PVBM);
904 if (len > 255 || len == 0) /* TAIL might be on on a zero-length string. */
905 return; /* can't have offsets that big */
907 Sv_Grow(sv,len + 258);
908 table = (unsigned char*)(SvPVX(sv) + len + 1);
910 for (i = 0; i < 256; i++) {
914 while (s >= (unsigned char*)(SvPVX(sv)))
916 if (table[*s] == len)
921 sv_magic(sv, Nullsv, 'B', Nullch, 0); /* deep magic */
924 s = (unsigned char*)(SvPVX(sv)); /* deeper magic */
925 for (i = 0; i < len; i++) {
926 if (PL_freq[s[i]] < frequency) {
928 frequency = PL_freq[s[i]];
931 BmRARE(sv) = s[rarest];
932 BmPREVIOUS(sv) = rarest;
933 DEBUG_r(PerlIO_printf(Perl_debug_log, "rarest char %c at %d\n",BmRARE(sv),BmPREVIOUS(sv)));
937 fbm_instr(unsigned char *big, register unsigned char *bigend, SV *littlestr, U32 flags)
939 register unsigned char *s;
941 register I32 littlelen;
942 register unsigned char *little;
943 register unsigned char *table;
944 register unsigned char *olds;
945 register unsigned char *oldlittle;
947 if (SvTYPE(littlestr) != SVt_PVBM || !SvVALID(littlestr)) {
949 char *l = SvPV(littlestr,len);
951 if (SvTAIL(littlestr)) { /* Can be only 0-len constant
952 substr => we can ignore SvVALID */
955 if ((s = (unsigned char*)ninstr((char*)big, (char*)bigend,
960 if (bigend > big && bigend[-1] == '\n')
961 return (char *)(bigend - 1);
963 return (char *) bigend;
967 return ninstr((char*)big,(char*)bigend, l, l + len);
970 littlelen = SvCUR(littlestr);
971 if (SvTAIL(littlestr) && !PL_multiline) { /* tail anchored? */
972 if (littlelen > bigend - big)
974 little = (unsigned char*)SvPVX(littlestr);
975 s = bigend - littlelen;
977 && bigend[-1] == '\n'
978 && s[-1] == *little && memEQ((char*)s - 1,(char*)little,littlelen))
979 return (char*)s - 1; /* how sweet it is */
980 else if (*s == *little && memEQ((char*)s,(char*)little,littlelen))
981 return (char*)s; /* how sweet it is */
984 if (littlelen <= 2) {
985 unsigned char c1 = (unsigned char)SvPVX(littlestr)[0];
986 unsigned char c2 = (unsigned char)SvPVX(littlestr)[1];
987 /* This may do extra comparisons if littlelen == 2, but this
988 should be hidden in the noise since we do less indirection. */
992 while (s <= bigend) {
994 && (littlelen == 1 || s[1] == c2)
995 && (!SvTAIL(littlestr)
997 || s[littlelen] == '\n')) /* Automatically multiline */
1005 table = (unsigned char*)(SvPVX(littlestr) + littlelen + 1);
1006 if (--littlelen >= bigend - big)
1008 s = big + littlelen;
1009 oldlittle = little = table - 2;
1013 if (tmp = table[*s]) {
1015 if (bigend - s > tmp) {
1020 if ((s += tmp) < bigend)
1026 tmp = littlelen; /* less expensive than calling strncmp() */
1029 if (*--s == *--little)
1032 s = olds + 1; /* here we pay the price for failure */
1034 if (s < bigend) /* fake up continue to outer loop */
1038 if (SvTAIL(littlestr) /* automatically multiline */
1039 && olds + 1 != bigend
1048 /* start_shift, end_shift are positive quantities which give offsets
1049 of ends of some substring of bigstr.
1050 If `last' we want the last occurence.
1051 old_posp is the way of communication between consequent calls if
1052 the next call needs to find the .
1053 The initial *old_posp should be -1.
1054 Note that we do not take into account SvTAIL, so it may give wrong
1055 positives if _ALL flag is set.
1059 screaminstr(SV *bigstr, SV *littlestr, I32 start_shift, I32 end_shift, I32 *old_posp, I32 last)
1062 register unsigned char *s, *x;
1063 register unsigned char *big;
1065 register I32 previous;
1067 register unsigned char *little;
1068 register I32 stop_pos;
1069 register unsigned char *littleend;
1073 ? (pos = PL_screamfirst[BmRARE(littlestr)]) < 0
1074 : (((pos = *old_posp), pos += PL_screamnext[pos]) == 0))
1076 little = (unsigned char *)(SvPVX(littlestr));
1077 littleend = little + SvCUR(littlestr);
1079 /* The value of pos we can start at: */
1080 previous = BmPREVIOUS(littlestr);
1081 big = (unsigned char *)(SvPVX(bigstr));
1082 /* The value of pos we can stop at: */
1083 stop_pos = SvCUR(bigstr) - end_shift - (SvCUR(littlestr) - 1 - previous);
1084 if (previous + start_shift > stop_pos) return Nullch;
1085 while (pos < previous + start_shift) {
1086 if (!(pos += PL_screamnext[pos]))
1091 if (pos >= stop_pos) break;
1092 if (big[pos-previous] != first)
1094 for (x=big+pos+1-previous,s=little; s < littleend; /**/ ) {
1100 if (s == littleend) {
1102 if (!last) return (char *)(big+pos-previous);
1105 } while ( pos += PL_screamnext[pos] );
1106 return (last && found) ? (char *)(big+(*old_posp)-previous) : Nullch;
1107 #else /* !POINTERRIGOR */
1110 if (pos >= stop_pos) break;
1111 if (big[pos] != first)
1113 for (x=big+pos+1,s=little; s < littleend; /**/ ) {
1119 if (s == littleend) {
1121 if (!last) return (char *)(big+pos);
1124 } while ( pos += PL_screamnext[pos] );
1125 return (last && found) ? (char *)(big+(*old_posp)) : Nullch;
1126 #endif /* POINTERRIGOR */
1130 ibcmp(const char *s1, const char *s2, register I32 len)
1132 register U8 *a = (U8 *)s1;
1133 register U8 *b = (U8 *)s2;
1135 if (*a != *b && *a != PL_fold[*b])
1143 ibcmp_locale(const char *s1, const char *s2, register I32 len)
1145 register U8 *a = (U8 *)s1;
1146 register U8 *b = (U8 *)s2;
1148 if (*a != *b && *a != PL_fold_locale[*b])
1155 /* copy a string to a safe spot */
1158 savepv(const char *sv)
1160 register char *newaddr;
1162 New(902,newaddr,strlen(sv)+1,char);
1163 (void)strcpy(newaddr,sv);
1167 /* same thing but with a known length */
1170 savepvn(const char *sv, register I32 len)
1172 register char *newaddr;
1174 New(903,newaddr,len+1,char);
1175 Copy(sv,newaddr,len,char); /* might not be null terminated */
1176 newaddr[len] = '\0'; /* is now */
1180 /* the SV for form() and mess() is not kept in an arena */
1190 return sv_2mortal(newSVpvn("",0));
1195 /* Create as PVMG now, to avoid any upgrading later */
1196 New(905, sv, 1, SV);
1197 Newz(905, any, 1, XPVMG);
1198 SvFLAGS(sv) = SVt_PVMG;
1199 SvANY(sv) = (void*)any;
1200 SvREFCNT(sv) = 1 << 30; /* practically infinite */
1206 form(const char* pat, ...)
1208 SV *sv = mess_alloc();
1210 va_start(args, pat);
1211 sv_vsetpvfn(sv, pat, strlen(pat), &args, Null(SV**), 0, Null(bool*));
1217 mess(const char *pat, va_list *args)
1219 SV *sv = mess_alloc();
1220 static char dgd[] = " during global destruction.\n";
1222 sv_vsetpvfn(sv, pat, strlen(pat), args, Null(SV**), 0, Null(bool*));
1223 if (!SvCUR(sv) || *(SvEND(sv) - 1) != '\n') {
1225 if (PL_curcop->cop_line)
1226 sv_catpvf(sv, " at %_ line %ld",
1227 GvSV(PL_curcop->cop_filegv), (long)PL_curcop->cop_line);
1228 if (GvIO(PL_last_in_gv) && IoLINES(GvIOp(PL_last_in_gv))) {
1229 bool line_mode = (RsSIMPLE(PL_rs) &&
1230 SvCUR(PL_rs) == 1 && *SvPVX(PL_rs) == '\n');
1231 sv_catpvf(sv, ", <%s> %s %ld",
1232 PL_last_in_gv == PL_argvgv ? "" : GvNAME(PL_last_in_gv),
1233 line_mode ? "line" : "chunk",
1234 (long)IoLINES(GvIOp(PL_last_in_gv)));
1236 sv_catpv(sv, PL_dirty ? dgd : ".\n");
1242 die(const char* pat, ...)
1247 int was_in_eval = PL_in_eval;
1254 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1255 "%p: die: curstack = %p, mainstack = %p\n",
1256 thr, PL_curstack, PL_mainstack));
1258 va_start(args, pat);
1260 msv = mess(pat, &args);
1261 message = SvPV(msv,msglen);
1268 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1269 "%p: die: message = %s\ndiehook = %p\n",
1270 thr, message, PL_diehook));
1272 /* sv_2cv might call croak() */
1273 SV *olddiehook = PL_diehook;
1275 SAVESPTR(PL_diehook);
1276 PL_diehook = Nullsv;
1277 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1279 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1285 msg = newSVpvn(message, msglen);
1293 PUSHSTACKi(PERLSI_DIEHOOK);
1297 perl_call_sv((SV*)cv, G_DISCARD);
1303 PL_restartop = die_where(message, msglen);
1304 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
1305 "%p: die: restartop = %p, was_in_eval = %d, top_env = %p\n",
1306 thr, PL_restartop, was_in_eval, PL_top_env));
1307 if ((!PL_restartop && was_in_eval) || PL_top_env->je_prev)
1309 return PL_restartop;
1313 croak(const char* pat, ...)
1324 va_start(args, pat);
1325 msv = mess(pat, &args);
1326 message = SvPV(msv,msglen);
1328 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1330 /* sv_2cv might call croak() */
1331 SV *olddiehook = PL_diehook;
1333 SAVESPTR(PL_diehook);
1334 PL_diehook = Nullsv;
1335 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1337 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1342 msg = newSVpvn(message, msglen);
1346 PUSHSTACKi(PERLSI_DIEHOOK);
1350 perl_call_sv((SV*)cv, G_DISCARD);
1356 PL_restartop = die_where(message, msglen);
1361 /* SFIO can really mess with your errno */
1364 PerlIO_write(PerlIO_stderr(), message, msglen);
1365 (void)PerlIO_flush(PerlIO_stderr());
1374 warn(const char* pat,...)
1384 va_start(args, pat);
1385 msv = mess(pat, &args);
1386 message = SvPV(msv, msglen);
1390 /* sv_2cv might call warn() */
1392 SV *oldwarnhook = PL_warnhook;
1394 SAVESPTR(PL_warnhook);
1395 PL_warnhook = Nullsv;
1396 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1398 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1403 msg = newSVpvn(message, msglen);
1407 PUSHSTACKi(PERLSI_WARNHOOK);
1411 perl_call_sv((SV*)cv, G_DISCARD);
1417 PerlIO_write(PerlIO_stderr(), message, msglen);
1419 DEBUG_L(*message == '!'
1420 ? (xstat(message[1]=='!'
1421 ? (message[2]=='!' ? 2 : 1)
1426 (void)PerlIO_flush(PerlIO_stderr());
1430 warner(U32 err, const char* pat,...)
1441 va_start(args, pat);
1442 msv = mess(pat, &args);
1443 message = SvPV(msv, msglen);
1448 DEBUG_S(PerlIO_printf(PerlIO_stderr(), "croak: 0x%lx %s", (unsigned long) thr, message));
1449 #endif /* USE_THREADS */
1451 /* sv_2cv might call croak() */
1452 SV *olddiehook = PL_diehook;
1454 SAVESPTR(PL_diehook);
1455 PL_diehook = Nullsv;
1456 cv = sv_2cv(olddiehook, &stash, &gv, 0);
1458 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1463 msg = newSVpvn(message, msglen);
1470 perl_call_sv((SV*)cv, G_DISCARD);
1476 PL_restartop = die_where(message, msglen);
1479 PerlIO_write(PerlIO_stderr(), message, msglen);
1480 (void)PerlIO_flush(PerlIO_stderr());
1486 /* sv_2cv might call warn() */
1488 SV *oldwarnhook = PL_warnhook;
1490 SAVESPTR(PL_warnhook);
1491 PL_warnhook = Nullsv;
1492 cv = sv_2cv(oldwarnhook, &stash, &gv, 0);
1494 if (cv && !CvDEPTH(cv) && (CvROOT(cv) || CvXSUB(cv))) {
1499 msg = newSVpvn(message, msglen);
1506 perl_call_sv((SV*)cv, G_DISCARD);
1512 PerlIO_write(PerlIO_stderr(), message, msglen);
1516 (void)PerlIO_flush(PerlIO_stderr());
1520 #ifndef VMS /* VMS' my_setenv() is in VMS.c */
1523 my_setenv(char *nam, char *val)
1525 #ifndef PERL_USE_SAFE_PUTENV
1526 /* most putenv()s leak, so we manipulate environ directly */
1527 register I32 i=setenv_getix(nam); /* where does it go? */
1529 if (environ == PL_origenviron) { /* need we copy environment? */
1535 for (max = i; environ[max]; max++) ;
1536 tmpenv = (char**)safesysmalloc((max+2) * sizeof(char*));
1537 for (j=0; j<max; j++) { /* copy environment */
1538 tmpenv[j] = (char*)safesysmalloc((strlen(environ[j])+1)*sizeof(char));
1539 strcpy(tmpenv[j], environ[j]);
1541 tmpenv[max] = Nullch;
1542 environ = tmpenv; /* tell exec where it is now */
1545 safesysfree(environ[i]);
1546 while (environ[i]) {
1547 environ[i] = environ[i+1];
1552 if (!environ[i]) { /* does not exist yet */
1553 environ = (char**)safesysrealloc(environ, (i+2) * sizeof(char*));
1554 environ[i+1] = Nullch; /* make sure it's null terminated */
1557 safesysfree(environ[i]);
1558 environ[i] = (char*)safesysmalloc((strlen(nam)+strlen(val)+2) * sizeof(char));
1561 (void)sprintf(environ[i],"%s=%s",nam,val);/* all that work just for this */
1563 /* MS-DOS requires environment variable names to be in uppercase */
1564 /* [Tom Dinger, 27 August 1990: Well, it doesn't _require_ it, but
1565 * some utilities and applications may break because they only look
1566 * for upper case strings. (Fixed strupr() bug here.)]
1568 strcpy(environ[i],nam); strupr(environ[i]);
1569 (void)sprintf(environ[i] + strlen(nam),"=%s",val);
1572 #else /* PERL_USE_SAFE_PUTENV */
1575 new_env = (char*)safesysmalloc((strlen(nam) + strlen(val) + 2) * sizeof(char));
1577 (void)sprintf(new_env,"%s=%s",nam,val);/* all that work just for this */
1579 strcpy(new_env,nam); strupr(new_env);
1580 (void)sprintf(new_env + strlen(nam),"=%s",val);
1582 (void)putenv(new_env);
1583 #endif /* PERL_USE_SAFE_PUTENV */
1586 #else /* if WIN32 */
1589 my_setenv(char *nam,char *val)
1592 #ifdef USE_WIN32_RTL_ENV
1594 register char *envstr;
1595 STRLEN namlen = strlen(nam);
1597 char *oldstr = environ[setenv_getix(nam)];
1599 /* putenv() has totally broken semantics in both the Borland
1600 * and Microsoft CRTLs. They either store the passed pointer in
1601 * the environment without making a copy, or make a copy and don't
1602 * free it. And on top of that, they dont free() old entries that
1603 * are being replaced/deleted. This means the caller must
1604 * free any old entries somehow, or we end up with a memory
1605 * leak every time my_setenv() is called. One might think
1606 * one could directly manipulate environ[], like the UNIX code
1607 * above, but direct changes to environ are not allowed when
1608 * calling putenv(), since the RTLs maintain an internal
1609 * *copy* of environ[]. Bad, bad, *bad* stink.
1620 vallen = strlen(val);
1621 envstr = (char*)safesysmalloc((namlen + vallen + 3) * sizeof(char));
1622 (void)sprintf(envstr,"%s=%s",nam,val);
1623 (void)PerlEnv_putenv(envstr);
1625 safesysfree(oldstr);
1627 safesysfree(envstr); /* MSVCRT leaks without this */
1630 #else /* !USE_WIN32_RTL_ENV */
1632 register char *envstr;
1633 STRLEN len = strlen(nam) + 3;
1638 New(904, envstr, len, char);
1639 (void)sprintf(envstr,"%s=%s",nam,val);
1640 (void)PerlEnv_putenv(envstr);
1649 setenv_getix(char *nam)
1651 register I32 i, len = strlen(nam);
1653 for (i = 0; environ[i]; i++) {
1656 strnicmp(environ[i],nam,len) == 0
1658 strnEQ(environ[i],nam,len)
1660 && environ[i][len] == '=')
1661 break; /* strnEQ must come first to avoid */
1662 } /* potential SEGV's */
1668 #ifdef UNLINK_ALL_VERSIONS
1670 unlnk(f) /* unlink all versions of a file */
1675 for (i = 0; PerlLIO_unlink(f) >= 0; i++) ;
1680 #if !defined(HAS_BCOPY) || !defined(HAS_SAFE_BCOPY)
1682 my_bcopy(register const char *from,register char *to,register I32 len)
1686 if (from - to >= 0) {
1694 *(--to) = *(--from);
1702 my_memset(register char *loc, register I32 ch, register I32 len)
1712 #if !defined(HAS_BZERO) && !defined(HAS_MEMSET)
1714 my_bzero(register char *loc, register I32 len)
1724 #if !defined(HAS_MEMCMP) || !defined(HAS_SANE_MEMCMP)
1726 my_memcmp(const char *s1, const char *s2, register I32 len)
1728 register U8 *a = (U8 *)s1;
1729 register U8 *b = (U8 *)s2;
1733 if (tmp = *a++ - *b++)
1738 #endif /* !HAS_MEMCMP || !HAS_SANE_MEMCMP */
1742 #ifdef USE_CHAR_VSPRINTF
1747 vsprintf(char *dest, const char *pat, char *args)
1751 fakebuf._ptr = dest;
1752 fakebuf._cnt = 32767;
1756 fakebuf._flag = _IOWRT|_IOSTRG;
1757 _doprnt(pat, args, &fakebuf); /* what a kludge */
1758 (void)putc('\0', &fakebuf);
1759 #ifdef USE_CHAR_VSPRINTF
1762 return 0; /* perl doesn't use return value */
1766 #endif /* HAS_VPRINTF */
1769 #if BYTEORDER != 0x4321
1773 #if (BYTEORDER & 1) == 0
1776 result = ((s & 255) << 8) + ((s >> 8) & 255);
1788 char c[sizeof(long)];
1791 #if BYTEORDER == 0x1234
1792 u.c[0] = (l >> 24) & 255;
1793 u.c[1] = (l >> 16) & 255;
1794 u.c[2] = (l >> 8) & 255;
1798 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1799 croak("Unknown BYTEORDER\n");
1804 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1805 u.c[o & 0xf] = (l >> s) & 255;
1817 char c[sizeof(long)];
1820 #if BYTEORDER == 0x1234
1821 u.c[0] = (l >> 24) & 255;
1822 u.c[1] = (l >> 16) & 255;
1823 u.c[2] = (l >> 8) & 255;
1827 #if ((BYTEORDER - 0x1111) & 0x444) || !(BYTEORDER & 0xf)
1828 croak("Unknown BYTEORDER\n");
1835 for (o = BYTEORDER - 0x1111, s = 0; s < (sizeof(long)*8); o >>= 4, s += 8) {
1836 l |= (u.c[o & 0xf] & 255) << s;
1843 #endif /* BYTEORDER != 0x4321 */
1847 * Little-endian byte order functions - 'v' for 'VAX', or 'reVerse'.
1848 * If these functions are defined,
1849 * the BYTEORDER is neither 0x1234 nor 0x4321.
1850 * However, this is not assumed.
1854 #define HTOV(name,type) \
1861 char c[sizeof(type)]; \
1865 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1866 u.c[i] = (n >> s) & 0xFF; \
1871 #define VTOH(name,type) \
1878 char c[sizeof(type)]; \
1884 for (i = 0, s = 0; i < sizeof(u.c); i++, s += 8) { \
1885 n += (u.c[i] & 0xFF) << s; \
1890 #if defined(HAS_HTOVS) && !defined(htovs)
1893 #if defined(HAS_HTOVL) && !defined(htovl)
1896 #if defined(HAS_VTOHS) && !defined(vtohs)
1899 #if defined(HAS_VTOHL) && !defined(vtohl)
1903 /* VMS' my_popen() is in VMS.c, same with OS/2. */
1904 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
1906 my_popen(char *cmd, char *mode)
1909 register I32 This, that;
1912 I32 doexec = strNE(cmd,"-");
1916 PERL_FLUSHALL_FOR_CHILD;
1919 return my_syspopen(cmd,mode);
1922 This = (*mode == 'w');
1924 if (doexec && PL_tainting) {
1926 taint_proper("Insecure %s%s", "EXEC");
1928 if (PerlProc_pipe(p) < 0)
1930 if (doexec && PerlProc_pipe(pp) >= 0)
1932 while ((pid = (doexec?vfork():fork())) < 0) {
1933 if (errno != EAGAIN) {
1934 PerlLIO_close(p[This]);
1936 PerlLIO_close(pp[0]);
1937 PerlLIO_close(pp[1]);
1940 croak("Can't fork");
1952 PerlLIO_close(p[THAT]);
1954 PerlLIO_close(pp[0]);
1955 #if defined(HAS_FCNTL) && defined(F_SETFD)
1956 fcntl(pp[1], F_SETFD, FD_CLOEXEC);
1959 if (p[THIS] != (*mode == 'r')) {
1960 PerlLIO_dup2(p[THIS], *mode == 'r');
1961 PerlLIO_close(p[THIS]);
1964 #if !defined(HAS_FCNTL) || !defined(F_SETFD)
1970 for (fd = PL_maxsysfd + 1; fd < NOFILE; fd++)
1974 do_exec3(cmd,pp[1],did_pipes); /* may or may not use the shell */
1978 if (tmpgv = gv_fetchpv("$",TRUE, SVt_PV))
1979 sv_setiv(GvSV(tmpgv), (IV)getpid());
1981 hv_clear(PL_pidstatus); /* we have no children */
1986 do_execfree(); /* free any memory malloced by child on vfork */
1987 PerlLIO_close(p[that]);
1989 PerlLIO_close(pp[1]);
1990 if (p[that] < p[This]) {
1991 PerlLIO_dup2(p[This], p[that]);
1992 PerlLIO_close(p[This]);
1995 sv = *av_fetch(PL_fdpid,p[This],TRUE);
1996 (void)SvUPGRADE(sv,SVt_IV);
1998 PL_forkprocess = pid;
1999 if (did_pipes && pid > 0) {
2003 while (n < sizeof(int)) {
2004 n1 = PerlLIO_read(pp[0],
2005 (void*)(((char*)&errkid)+n),
2011 if (n) { /* Error */
2012 if (n != sizeof(int))
2013 croak("panic: kid popen errno read");
2014 PerlLIO_close(pp[0]);
2015 errno = errkid; /* Propagate errno from kid */
2020 PerlLIO_close(pp[0]);
2021 return PerlIO_fdopen(p[This], mode);
2024 #if defined(atarist) || defined(DJGPP)
2027 my_popen(char *cmd, char *mode)
2029 /* Needs work for PerlIO ! */
2030 /* used 0 for 2nd parameter to PerlIO-exportFILE; apparently not used */
2031 PERL_FLUSHALL_FOR_CHILD;
2032 return popen(PerlIO_exportFILE(cmd, 0), mode);
2036 #endif /* !DOSISH */
2043 struct stat tmpstatbuf;
2045 PerlIO_printf(PerlIO_stderr(),"%s", s);
2046 for (fd = 0; fd < 32; fd++) {
2047 if (PerlLIO_fstat(fd,&tmpstatbuf) >= 0)
2048 PerlIO_printf(PerlIO_stderr()," %d",fd);
2050 PerlIO_printf(PerlIO_stderr(),"\n");
2052 #endif /* DUMP_FDS */
2060 #if defined(HAS_FCNTL) && defined(F_DUPFD)
2063 PerlLIO_close(newfd);
2064 return fcntl(oldfd, F_DUPFD, newfd);
2066 #define DUP2_MAX_FDS 256
2067 int fdtmp[DUP2_MAX_FDS];
2073 PerlLIO_close(newfd);
2074 /* good enough for low fd's... */
2075 while ((fd = PerlLIO_dup(oldfd)) != newfd && fd >= 0) {
2076 if (fdx >= DUP2_MAX_FDS) {
2084 PerlLIO_close(fdtmp[--fdx]);
2091 #ifdef HAS_SIGACTION
2094 rsignal(int signo, Sighandler_t handler)
2096 struct sigaction act, oact;
2098 act.sa_handler = handler;
2099 sigemptyset(&act.sa_mask);
2102 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2105 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2106 act.sa_flags |= SA_NOCLDWAIT;
2108 if (sigaction(signo, &act, &oact) == -1)
2111 return oact.sa_handler;
2115 rsignal_state(int signo)
2117 struct sigaction oact;
2119 if (sigaction(signo, (struct sigaction *)NULL, &oact) == -1)
2122 return oact.sa_handler;
2126 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2128 struct sigaction act;
2130 act.sa_handler = handler;
2131 sigemptyset(&act.sa_mask);
2134 act.sa_flags |= SA_RESTART; /* SVR4, 4.3+BSD */
2137 if (signo == SIGCHLD && handler == (Sighandler_t)SIG_IGN)
2138 act.sa_flags |= SA_NOCLDWAIT;
2140 return sigaction(signo, &act, save);
2144 rsignal_restore(int signo, Sigsave_t *save)
2146 return sigaction(signo, save, (struct sigaction *)NULL);
2149 #else /* !HAS_SIGACTION */
2152 rsignal(int signo, Sighandler_t handler)
2154 return PerlProc_signal(signo, handler);
2157 static int sig_trapped;
2167 rsignal_state(int signo)
2169 Sighandler_t oldsig;
2172 oldsig = PerlProc_signal(signo, sig_trap);
2173 PerlProc_signal(signo, oldsig);
2175 PerlProc_kill(getpid(), signo);
2180 rsignal_save(int signo, Sighandler_t handler, Sigsave_t *save)
2182 *save = PerlProc_signal(signo, handler);
2183 return (*save == SIG_ERR) ? -1 : 0;
2187 rsignal_restore(int signo, Sigsave_t *save)
2189 return (PerlProc_signal(signo, *save) == SIG_ERR) ? -1 : 0;
2192 #endif /* !HAS_SIGACTION */
2194 /* VMS' my_pclose() is in VMS.c; same with OS/2 */
2195 #if (!defined(DOSISH) || defined(HAS_FORK) || defined(AMIGAOS)) && !defined(VMS) && !defined(__OPEN_VM)
2197 my_pclose(PerlIO *ptr)
2199 Sigsave_t hstat, istat, qstat;
2207 int saved_vaxc_errno;
2210 int saved_win32_errno;
2213 svp = av_fetch(PL_fdpid,PerlIO_fileno(ptr),TRUE);
2214 pid = (int)SvIVX(*svp);
2216 *svp = &PL_sv_undef;
2218 if (pid == -1) { /* Opened by popen. */
2219 return my_syspclose(ptr);
2222 if ((close_failed = (PerlIO_close(ptr) == EOF))) {
2223 saved_errno = errno;
2225 saved_vaxc_errno = vaxc$errno;
2228 saved_win32_errno = GetLastError();
2232 if(PerlProc_kill(pid, 0) < 0) { return(pid); } /* HOM 12/23/91 */
2234 rsignal_save(SIGHUP, SIG_IGN, &hstat);
2235 rsignal_save(SIGINT, SIG_IGN, &istat);
2236 rsignal_save(SIGQUIT, SIG_IGN, &qstat);
2238 pid2 = wait4pid(pid, &status, 0);
2239 } while (pid2 == -1 && errno == EINTR);
2240 rsignal_restore(SIGHUP, &hstat);
2241 rsignal_restore(SIGINT, &istat);
2242 rsignal_restore(SIGQUIT, &qstat);
2244 SETERRNO(saved_errno, saved_vaxc_errno);
2247 return(pid2 < 0 ? pid2 : status == 0 ? 0 : (errno = 0, status));
2249 #endif /* !DOSISH */
2251 #if !defined(DOSISH) || defined(OS2) || defined(WIN32) || defined(CYGWIN32)
2253 wait4pid(int pid, int *statusp, int flags)
2257 char spid[TYPE_CHARS(int)];
2262 sprintf(spid, "%d", pid);
2263 svp = hv_fetch(PL_pidstatus,spid,strlen(spid),FALSE);
2264 if (svp && *svp != &PL_sv_undef) {
2265 *statusp = SvIVX(*svp);
2266 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2273 hv_iterinit(PL_pidstatus);
2274 if (entry = hv_iternext(PL_pidstatus)) {
2275 pid = atoi(hv_iterkey(entry,(I32*)statusp));
2276 sv = hv_iterval(PL_pidstatus,entry);
2277 *statusp = SvIVX(sv);
2278 sprintf(spid, "%d", pid);
2279 (void)hv_delete(PL_pidstatus,spid,strlen(spid),G_DISCARD);
2284 # ifdef HAS_WAITPID_RUNTIME
2285 if (!HAS_WAITPID_RUNTIME)
2288 return PerlProc_waitpid(pid,statusp,flags);
2290 #if !defined(HAS_WAITPID) && defined(HAS_WAIT4)
2291 return wait4((pid==-1)?0:pid,statusp,flags,Null(struct rusage *));
2293 #if !defined(HAS_WAITPID) && !defined(HAS_WAIT4) || defined(HAS_WAITPID_RUNTIME)
2298 croak("Can't do waitpid with flags");
2300 while ((result = PerlProc_wait(statusp)) != pid && pid > 0 && result >= 0)
2301 pidgone(result,*statusp);
2309 #endif /* !DOSISH || OS2 || WIN32 */
2313 pidgone(int pid, int status)
2316 char spid[TYPE_CHARS(int)];
2318 sprintf(spid, "%d", pid);
2319 sv = *hv_fetch(PL_pidstatus,spid,strlen(spid),TRUE);
2320 (void)SvUPGRADE(sv,SVt_IV);
2325 #if defined(atarist) || defined(OS2) || defined(DJGPP)
2328 int /* Cannot prototype with I32
2337 /* Needs work for PerlIO ! */
2338 FILE *f = PerlIO_findFILE(ptr);
2339 I32 result = pclose(f);
2340 PerlIO_releaseFILE(ptr,f);
2346 repeatcpy(register char *to, register const char *from, I32 len, register I32 count)
2349 register const char *frombase = from;
2352 register const char c = *from;
2357 while (count-- > 0) {
2358 for (todo = len; todo > 0; todo--) {
2366 cast_ulong(double f)
2371 # define BIGDOUBLE 2147483648.0
2373 return (unsigned long)(f-(long)(f/BIGDOUBLE)*BIGDOUBLE)|0x80000000;
2376 return (unsigned long)f;
2378 return (unsigned long)along;
2382 /* Unfortunately, on some systems the cast_uv() function doesn't
2383 work with the system-supplied definition of ULONG_MAX. The
2384 comparison (f >= ULONG_MAX) always comes out true. It must be a
2385 problem with the compiler constant folding.
2387 In any case, this workaround should be fine on any two's complement
2388 system. If it's not, supply a '-DMY_ULONG_MAX=whatever' in your
2390 --Andy Dougherty <doughera@lafcol.lafayette.edu>
2393 /* Code modified to prefer proper named type ranges, I32, IV, or UV, instead
2395 -- Kenneth Albanowski <kjahds@kjahds.com>
2399 # define MY_UV_MAX ((UV)IV_MAX * (UV)2 + (UV)1)
2406 return (I32) I32_MAX;
2408 return (I32) I32_MIN;
2418 if (f >= (double)UV_MAX)
2432 return (UV) MY_UV_MAX;
2446 same_dirent(char *a, char *b)
2448 char *fa = strrchr(a,'/');
2449 char *fb = strrchr(b,'/');
2450 struct stat tmpstatbuf1;
2451 struct stat tmpstatbuf2;
2452 SV *tmpsv = sv_newmortal();
2465 sv_setpv(tmpsv, ".");
2467 sv_setpvn(tmpsv, a, fa - a);
2468 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf1) < 0)
2471 sv_setpv(tmpsv, ".");
2473 sv_setpvn(tmpsv, b, fb - b);
2474 if (PerlLIO_stat(SvPVX(tmpsv), &tmpstatbuf2) < 0)
2476 return tmpstatbuf1.st_dev == tmpstatbuf2.st_dev &&
2477 tmpstatbuf1.st_ino == tmpstatbuf2.st_ino;
2479 #endif /* !HAS_RENAME */
2482 scan_bin(char *start, I32 len, I32 *retlen)
2484 register char *s = start;
2485 register UV retval = 0;
2486 bool overflowed = FALSE;
2487 while (len && *s >= '0' && *s <= '1') {
2488 register UV n = retval << 1;
2489 if (!overflowed && (n >> 1) != retval) {
2490 warn("Integer overflow in binary number");
2493 retval = n | (*s++ - '0');
2496 if (len && (*s >= '2' && *s <= '9')) {
2498 if (ckWARN(WARN_UNSAFE))
2499 warner(WARN_UNSAFE, "Illegal binary digit '%c' ignored", *s);
2501 *retlen = s - start;
2505 scan_oct(char *start, I32 len, I32 *retlen)
2507 register char *s = start;
2508 register UV retval = 0;
2509 bool overflowed = FALSE;
2511 while (len && *s >= '0' && *s <= '7') {
2512 register UV n = retval << 3;
2513 if (!overflowed && (n >> 3) != retval) {
2514 warn("Integer overflow in octal number");
2517 retval = n | (*s++ - '0');
2520 if (len && (*s == '8' || *s == '9')) {
2522 if (ckWARN(WARN_OCTAL))
2523 warner(WARN_OCTAL, "Illegal octal digit '%c' ignored", *s);
2525 *retlen = s - start;
2530 scan_hex(char *start, I32 len, I32 *retlen)
2532 register char *s = start;
2533 register UV retval = 0;
2534 bool overflowed = FALSE;
2538 while (len-- && *s) {
2539 tmp = strchr((char *) PL_hexdigit, *s++);
2541 if (*(s-1) == '_' || (*(s-1) == 'x' && retval == 0))
2546 if (ckWARN(WARN_UNSAFE))
2547 warner(WARN_UNSAFE,"Illegal hex digit '%c' ignored", *s);
2552 if (!overflowed && (n >> 4) != retval) {
2553 warn("Integer overflow in hex number");
2556 retval = n | ((tmp - PL_hexdigit) & 15);
2558 *retlen = s - start;
2563 find_script(char *scriptname, bool dosearch, char **search_ext, I32 flags)
2566 char *xfound = Nullch;
2567 char *xfailed = Nullch;
2568 char tmpbuf[MAXPATHLEN];
2572 #if defined(DOSISH) && !defined(OS2) && !defined(atarist)
2573 # define SEARCH_EXTS ".bat", ".cmd", NULL
2574 # define MAX_EXT_LEN 4
2577 # define SEARCH_EXTS ".cmd", ".btm", ".bat", ".pl", NULL
2578 # define MAX_EXT_LEN 4
2581 # define SEARCH_EXTS ".pl", ".com", NULL
2582 # define MAX_EXT_LEN 4
2584 /* additional extensions to try in each dir if scriptname not found */
2586 char *exts[] = { SEARCH_EXTS };
2587 char **ext = search_ext ? search_ext : exts;
2588 int extidx = 0, i = 0;
2589 char *curext = Nullch;
2591 # define MAX_EXT_LEN 0
2595 * If dosearch is true and if scriptname does not contain path
2596 * delimiters, search the PATH for scriptname.
2598 * If SEARCH_EXTS is also defined, will look for each
2599 * scriptname{SEARCH_EXTS} whenever scriptname is not found
2600 * while searching the PATH.
2602 * Assuming SEARCH_EXTS is C<".foo",".bar",NULL>, PATH search
2603 * proceeds as follows:
2604 * If DOSISH or VMSISH:
2605 * + look for ./scriptname{,.foo,.bar}
2606 * + search the PATH for scriptname{,.foo,.bar}
2609 * + look *only* in the PATH for scriptname{,.foo,.bar} (note
2610 * this will not look in '.' if it's not in the PATH)
2615 # ifdef ALWAYS_DEFTYPES
2616 len = strlen(scriptname);
2617 if (!(len == 1 && *scriptname == '-') && scriptname[len-1] != ':') {
2618 int hasdir, idx = 0, deftypes = 1;
2621 hasdir = !dosearch || (strpbrk(scriptname,":[</") != Nullch) ;
2624 int hasdir, idx = 0, deftypes = 1;
2627 hasdir = (strpbrk(scriptname,":[</") != Nullch) ;
2629 /* The first time through, just add SEARCH_EXTS to whatever we
2630 * already have, so we can check for default file types. */
2632 (!hasdir && my_trnlnm("DCL$PATH",tmpbuf,idx++)) )
2638 if ((strlen(tmpbuf) + strlen(scriptname)
2639 + MAX_EXT_LEN) >= sizeof tmpbuf)
2640 continue; /* don't search dir with too-long name */
2641 strcat(tmpbuf, scriptname);
2645 if (strEQ(scriptname, "-"))
2647 if (dosearch) { /* Look in '.' first. */
2648 char *cur = scriptname;
2650 if ((curext = strrchr(scriptname,'.'))) /* possible current ext */
2652 if (strEQ(ext[i++],curext)) {
2653 extidx = -1; /* already has an ext */
2658 DEBUG_p(PerlIO_printf(Perl_debug_log,
2659 "Looking for %s\n",cur));
2660 if (PerlLIO_stat(cur,&PL_statbuf) >= 0
2661 && !S_ISDIR(PL_statbuf.st_mode)) {
2669 if (cur == scriptname) {
2670 len = strlen(scriptname);
2671 if (len+MAX_EXT_LEN+1 >= sizeof(tmpbuf))
2673 cur = strcpy(tmpbuf, scriptname);
2675 } while (extidx >= 0 && ext[extidx] /* try an extension? */
2676 && strcpy(tmpbuf+len, ext[extidx++]));
2681 if (dosearch && !strchr(scriptname, '/')
2683 && !strchr(scriptname, '\\')
2685 && (s = PerlEnv_getenv("PATH"))) {
2688 PL_bufend = s + strlen(s);
2689 while (s < PL_bufend) {
2690 #if defined(atarist) || defined(DOSISH)
2695 && *s != ';'; len++, s++) {
2696 if (len < sizeof tmpbuf)
2699 if (len < sizeof tmpbuf)
2701 #else /* ! (atarist || DOSISH) */
2702 s = delimcpy(tmpbuf, tmpbuf + sizeof tmpbuf, s, PL_bufend,
2705 #endif /* ! (atarist || DOSISH) */
2708 if (len + 1 + strlen(scriptname) + MAX_EXT_LEN >= sizeof tmpbuf)
2709 continue; /* don't search dir with too-long name */
2711 #if defined(atarist) || defined(__MINT__) || defined(DOSISH)
2712 && tmpbuf[len - 1] != '/'
2713 && tmpbuf[len - 1] != '\\'
2716 tmpbuf[len++] = '/';
2717 if (len == 2 && tmpbuf[0] == '.')
2719 (void)strcpy(tmpbuf + len, scriptname);
2723 len = strlen(tmpbuf);
2724 if (extidx > 0) /* reset after previous loop */
2728 DEBUG_p(PerlIO_printf(Perl_debug_log, "Looking for %s\n",tmpbuf));
2729 retval = PerlLIO_stat(tmpbuf,&PL_statbuf);
2730 if (S_ISDIR(PL_statbuf.st_mode)) {
2734 } while ( retval < 0 /* not there */
2735 && extidx>=0 && ext[extidx] /* try an extension? */
2736 && strcpy(tmpbuf+len, ext[extidx++])
2741 if (S_ISREG(PL_statbuf.st_mode)
2742 && cando(S_IRUSR,TRUE,&PL_statbuf)
2744 && cando(S_IXUSR,TRUE,&PL_statbuf)
2748 xfound = tmpbuf; /* bingo! */
2752 xfailed = savepv(tmpbuf);
2755 if (!xfound && !seen_dot && !xfailed &&
2756 (PerlLIO_stat(scriptname,&PL_statbuf) < 0
2757 || S_ISDIR(PL_statbuf.st_mode)))
2759 seen_dot = 1; /* Disable message. */
2761 if (flags & 1) { /* do or die? */
2762 croak("Can't %s %s%s%s",
2763 (xfailed ? "execute" : "find"),
2764 (xfailed ? xfailed : scriptname),
2765 (xfailed ? "" : " on PATH"),
2766 (xfailed || seen_dot) ? "" : ", '.' not in PATH");
2768 scriptname = Nullch;
2772 scriptname = xfound;
2774 return (scriptname ? savepv(scriptname) : Nullch);
2780 /* Very simplistic scheduler for now */
2784 thr = thr->i.next_run;
2788 perl_cond_init(perl_cond *cp)
2794 perl_cond_signal(perl_cond *cp)
2797 perl_cond cond = *cp;
2802 /* Insert t in the runnable queue just ahead of us */
2803 t->i.next_run = thr->i.next_run;
2804 thr->i.next_run->i.prev_run = t;
2805 t->i.prev_run = thr;
2806 thr->i.next_run = t;
2807 thr->i.wait_queue = 0;
2808 /* Remove from the wait queue */
2814 perl_cond_broadcast(perl_cond *cp)
2817 perl_cond cond, cond_next;
2819 for (cond = *cp; cond; cond = cond_next) {
2821 /* Insert t in the runnable queue just ahead of us */
2822 t->i.next_run = thr->i.next_run;
2823 thr->i.next_run->i.prev_run = t;
2824 t->i.prev_run = thr;
2825 thr->i.next_run = t;
2826 thr->i.wait_queue = 0;
2827 /* Remove from the wait queue */
2828 cond_next = cond->next;
2835 perl_cond_wait(perl_cond *cp)
2839 if (thr->i.next_run == thr)
2840 croak("panic: perl_cond_wait called by last runnable thread");
2842 New(666, cond, 1, struct perl_wait_queue);
2846 thr->i.wait_queue = cond;
2847 /* Remove ourselves from runnable queue */
2848 thr->i.next_run->i.prev_run = thr->i.prev_run;
2849 thr->i.prev_run->i.next_run = thr->i.next_run;
2851 #endif /* FAKE_THREADS */
2853 #ifdef PTHREAD_GETSPECIFIC_INT
2854 struct perl_thread *
2859 if (pthread_getspecific(PL_thr_key, &t))
2860 croak("panic: pthread_getspecific");
2861 return (struct perl_thread *) t;
2866 condpair_magic(SV *sv)
2870 SvUPGRADE(sv, SVt_PVMG);
2871 mg = mg_find(sv, 'm');
2875 New(53, cp, 1, condpair_t);
2876 MUTEX_INIT(&cp->mutex);
2877 COND_INIT(&cp->owner_cond);
2878 COND_INIT(&cp->cond);
2880 MUTEX_LOCK(&PL_cred_mutex); /* XXX need separate mutex? */
2881 mg = mg_find(sv, 'm');
2883 /* someone else beat us to initialising it */
2884 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
2885 MUTEX_DESTROY(&cp->mutex);
2886 COND_DESTROY(&cp->owner_cond);
2887 COND_DESTROY(&cp->cond);
2891 sv_magic(sv, Nullsv, 'm', 0, 0);
2893 mg->mg_ptr = (char *)cp;
2894 mg->mg_len = sizeof(cp);
2895 MUTEX_UNLOCK(&PL_cred_mutex); /* XXX need separate mutex? */
2896 DEBUG_S(WITH_THR(PerlIO_printf(PerlIO_stderr(),
2897 "%p: condpair_magic %p\n", thr, sv));)
2904 * Make a new perl thread structure using t as a prototype. Some of the
2905 * fields for the new thread are copied from the prototype thread, t,
2906 * so t should not be running in perl at the time this function is
2907 * called. The use by ext/Thread/Thread.xs in core perl (where t is the
2908 * thread calling new_struct_thread) clearly satisfies this constraint.
2910 struct perl_thread *
2911 new_struct_thread(struct perl_thread *t)
2913 struct perl_thread *thr;
2918 sv = newSVpvn("", 0);
2919 SvGROW(sv, sizeof(struct perl_thread) + 1);
2920 SvCUR_set(sv, sizeof(struct perl_thread));
2921 thr = (Thread) SvPVX(sv);
2923 memset(thr, 0xab, sizeof(struct perl_thread));
2930 Zero(&PL_hv_fetch_ent_mh, 1, HE);
2932 Zero(thr, 1, struct perl_thread);
2935 PL_protect = FUNC_NAME_TO_PTR(default_protect);
2940 PL_curcop = &PL_compiling;
2941 thr->cvcache = newHV();
2942 thr->threadsv = newAV();
2943 thr->specific = newAV();
2944 thr->errsv = newSVpvn("", 0);
2945 thr->errhv = newHV();
2946 thr->flags = THRf_R_JOINABLE;
2947 MUTEX_INIT(&thr->mutex);
2949 /* top_env needs to be non-zero. It points to an area
2950 in which longjmp() stuff is stored, as C callstack
2951 info there at least is thread specific this has to
2952 be per-thread. Otherwise a 'die' in a thread gives
2953 that thread the C stack of last thread to do an eval {}!
2954 See comments in scope.h
2955 Initialize top entry (as in perl.c for main thread)
2957 PL_start_env.je_prev = NULL;
2958 PL_start_env.je_ret = -1;
2959 PL_start_env.je_mustcatch = TRUE;
2960 PL_top_env = &PL_start_env;
2965 PL_statname = NEWSV(66,0);
2967 PL_regcompp = FUNC_NAME_TO_PTR(pregcomp);
2968 PL_regexecp = FUNC_NAME_TO_PTR(regexec_flags);
2970 PL_reginterp_cnt = 0;
2971 PL_lastscream = Nullsv;
2974 PL_reg_start_tmp = 0;
2975 PL_reg_start_tmpl = 0;
2977 /* parent thread's data needs to be locked while we make copy */
2978 MUTEX_LOCK(&t->mutex);
2980 PL_protect = t->Tprotect;
2982 PL_curcop = t->Tcurcop; /* XXX As good a guess as any? */
2983 PL_defstash = t->Tdefstash; /* XXX maybe these should */
2984 PL_curstash = t->Tcurstash; /* always be set to main? */
2986 PL_tainted = t->Ttainted;
2987 PL_curpm = t->Tcurpm; /* XXX No PMOP ref count */
2988 PL_nrs = newSVsv(t->Tnrs);
2989 PL_rs = SvREFCNT_inc(PL_nrs);
2990 PL_last_in_gv = Nullgv;
2991 PL_ofslen = t->Tofslen;
2992 PL_ofs = savepvn(t->Tofs, PL_ofslen);
2993 PL_defoutgv = (GV*)SvREFCNT_inc(t->Tdefoutgv);
2994 PL_chopset = t->Tchopset;
2995 PL_formtarget = newSVsv(t->Tformtarget);
2996 PL_bodytarget = newSVsv(t->Tbodytarget);
2997 PL_toptarget = newSVsv(t->Ttoptarget);
2999 /* Initialise all per-thread SVs that the template thread used */
3000 svp = AvARRAY(t->threadsv);
3001 for (i = 0; i <= AvFILLp(t->threadsv); i++, svp++) {
3002 if (*svp && *svp != &PL_sv_undef) {
3003 SV *sv = newSVsv(*svp);
3004 av_store(thr->threadsv, i, sv);
3005 sv_magic(sv, 0, 0, &PL_threadsv_names[i], 1);
3006 DEBUG_S(PerlIO_printf(PerlIO_stderr(),
3007 "new_struct_thread: copied threadsv %d %p->%p\n",i, t, thr));
3010 thr->threadsvp = AvARRAY(thr->threadsv);
3012 MUTEX_LOCK(&PL_threads_mutex);
3014 thr->tid = ++PL_threadnum;
3015 thr->next = t->next;
3018 thr->next->prev = thr;
3019 MUTEX_UNLOCK(&PL_threads_mutex);
3021 /* done copying parent's state */
3022 MUTEX_UNLOCK(&t->mutex);
3024 #ifdef HAVE_THREAD_INTERN
3025 init_thread_intern(thr);
3026 #endif /* HAVE_THREAD_INTERN */
3029 #endif /* USE_THREADS */
3033 * This hack is to force load of "huge" support from libm.a
3034 * So it is in perl for (say) POSIX to use.
3035 * Needed for SunOS with Sun's 'acc' for example.
3044 #ifdef PERL_GLOBAL_STRUCT
3067 return (char*)PL_no_modify;
3077 get_specialsv_list(void)
3079 return PL_specialsv_list;
3082 #ifndef HAS_GETENV_LEN
3084 getenv_len(char *env_elem, unsigned long *len)
3086 char *env_trans = PerlEnv_getenv(env_elem);
3088 *len = strlen(env_trans);
3095 get_vtbl(int vtbl_id)
3097 MGVTBL* result = Null(MGVTBL*);
3101 result = &PL_vtbl_sv;
3104 result = &PL_vtbl_env;
3106 case want_vtbl_envelem:
3107 result = &PL_vtbl_envelem;
3110 result = &PL_vtbl_sig;
3112 case want_vtbl_sigelem:
3113 result = &PL_vtbl_sigelem;
3115 case want_vtbl_pack:
3116 result = &PL_vtbl_pack;
3118 case want_vtbl_packelem:
3119 result = &PL_vtbl_packelem;
3121 case want_vtbl_dbline:
3122 result = &PL_vtbl_dbline;
3125 result = &PL_vtbl_isa;
3127 case want_vtbl_isaelem:
3128 result = &PL_vtbl_isaelem;
3130 case want_vtbl_arylen:
3131 result = &PL_vtbl_arylen;
3133 case want_vtbl_glob:
3134 result = &PL_vtbl_glob;
3136 case want_vtbl_mglob:
3137 result = &PL_vtbl_mglob;
3139 case want_vtbl_nkeys:
3140 result = &PL_vtbl_nkeys;
3142 case want_vtbl_taint:
3143 result = &PL_vtbl_taint;
3145 case want_vtbl_substr:
3146 result = &PL_vtbl_substr;
3149 result = &PL_vtbl_vec;
3152 result = &PL_vtbl_pos;
3155 result = &PL_vtbl_bm;
3158 result = &PL_vtbl_fm;
3160 case want_vtbl_uvar:
3161 result = &PL_vtbl_uvar;
3164 case want_vtbl_mutex:
3165 result = &PL_vtbl_mutex;
3168 case want_vtbl_defelem:
3169 result = &PL_vtbl_defelem;
3171 case want_vtbl_regexp:
3172 result = &PL_vtbl_regexp;
3174 case want_vtbl_regdata:
3175 result = &PL_vtbl_regdata;
3177 case want_vtbl_regdatum:
3178 result = &PL_vtbl_regdatum;
3180 #ifdef USE_LOCALE_COLLATE
3181 case want_vtbl_collxfrm:
3182 result = &PL_vtbl_collxfrm;
3185 case want_vtbl_amagic:
3186 result = &PL_vtbl_amagic;
3188 case want_vtbl_amagicelem:
3189 result = &PL_vtbl_amagicelem;
3191 case want_vtbl_backref:
3192 result = &PL_vtbl_backref;
3202 return fflush(NULL);
3205 # if defined(FFLUSH_ALL) && defined(STDIO_STREAM_ARRAY)
3206 # if defined(HAS_SYSCONF) && defined(_SC_OPEN_MAX)
3207 open_max = sysconf(_SC_OPEN_MAX);
3210 # open_max = FOPEN_MAX;
3213 # open_max = OPEN_MAX;
3216 # open_max = _NFILE;
3223 for (i = 0; i < open_max; i++)
3224 fflush(&STDIO_STREAM_ARRAY[i]);
3228 SETERRNO(EBADF,RMS$_IFI);