perl 5.002gamma: hints/sco.sh
[p5sagit/p5-mst-13.2.git] / perl.h
diff --git a/perl.h b/perl.h
index 8cb8330..ae075d8 100644 (file)
--- a/perl.h
+++ b/perl.h
  * code can be a lot prettier.  Well, so much for theory.  Sorry, Henry...
  */
 
-#ifdef MYMALLOC
-#   ifdef HIDEMYMALLOC
-#      define malloc Mymalloc
-#      define realloc Myremalloc
-#      define free Myfree
-#   endif
-#   define safemalloc malloc
-#   define saferealloc realloc
-#   define safefree free
-#endif
-
-/* work around some libPW problems */
-#ifdef DOINIT
-EXT char Error[1];
-#endif
-
 /* define this once if either system, instead of cluttering up the src */
 #if defined(MSDOS) || defined(atarist)
 #define DOSISH 1
@@ -72,25 +56,35 @@ EXT char Error[1];
 #define TAINT_PROPER(s)        if (tainting) taint_proper(no_security, s)
 #define TAINT_ENV()    if (tainting) taint_env()
 
-#ifdef HAS_GETPGRP2
+#if defined(HAS_GETPGRP2) && defined(HAS_SETPGRP2)
+#   define getpgrp getpgrp2
+#   define setpgrp setpgrp2
 #   ifndef HAS_GETPGRP
 #      define HAS_GETPGRP
 #   endif
-#endif
-
-#ifdef HAS_SETPGRP2
 #   ifndef HAS_SETPGRP
 #      define HAS_SETPGRP
 #   endif
+#   ifndef USE_BSDPGRP
+#      define USE_BSDPGRP
+#   endif
+#else
+#   if defined(HAS_GETPGRP2) || defined(HAS_SETPGRP2)
+       #include "Gack, you have one but not both of getpgrp2() and setpgrp2()."
+#   endif
 #endif
 
 #include <stdio.h>
-#ifdef USE_NEXT_CTYPE 
+#ifdef USE_NEXT_CTYPE
 #include <appkit/NXCType.h>
 #else
 #include <ctype.h>
 #endif
 
+#ifdef I_LOCALE
+#include <locale.h>
+#endif
+
 #ifdef METHOD  /* Defined by OSF/1 v3.0 by ctype.h */
 #undef METHOD
 #endif
@@ -110,6 +104,21 @@ EXT char Error[1];
 #   include <stdlib.h>
 #endif /* STANDARD_C */
 
+/* Maybe this comes after <stdlib.h> so we don't try to change 
+   the standard library prototypes?.  We'll use our own in 
+   proto.h instead.  I guess.  The patch had no explanation.
+*/
+#ifdef MYMALLOC
+#   ifdef HIDEMYMALLOC
+#      define malloc Mymalloc
+#      define realloc Myremalloc
+#      define free Myfree
+#   endif
+#   define safemalloc malloc
+#   define saferealloc realloc
+#   define safefree free
+#endif
+
 #define MEM_SIZE Size_t
 
 #if defined(I_STRING) || defined(__cplusplus)
@@ -127,6 +136,10 @@ EXT char Error[1];
 #   undef HAS_MEMCMP
 #endif
 
+#ifdef I_MEMORY
+#  include <memory.h>
+#endif
+
 #ifdef HAS_MEMCPY
 #  if !defined(STANDARD_C) && !defined(I_STRING) && !defined(I_MEMORY)
 #    ifndef memcpy
@@ -336,7 +349,7 @@ EXT char Error[1];
 #          endif
 #      endif
 #   endif
-#endif 
+#endif
 
 #ifdef FPUTS_BOTCH
 /* work around botch in SunOS 4.0.1 and 4.0.2 */
@@ -491,7 +504,6 @@ typedef struct pmop PMOP;
 typedef struct svop SVOP;
 typedef struct gvop GVOP;
 typedef struct pvop PVOP;
-typedef struct cvop CVOP;
 typedef struct loop LOOP;
 
 typedef struct Outrec Outrec;
@@ -525,12 +537,19 @@ typedef struct xpvio XPVIO;
 typedef struct mgvtbl MGVTBL;
 typedef union any ANY;
 
-typedef int (*cryptswitch_t) _((void));
-
 #include "handy.h"
 
+typedef I32 (*filter_t) _((int, SV *, int));
+#define FILTER_READ(idx, sv, len)  filter_read(idx, sv, len)
+#define FILTER_DATA(idx)          (AvARRAY(rsfp_filters)[idx])
+#define FILTER_ISREADER(idx)      (idx >= AvFILL(rsfp_filters))
+
 #ifdef DOSISH
+# if defined(OS2)
+#   include "os2ish.h"
+# else
 #   include "dosish.h"
+# endif
 #else
 # if defined(VMS)
 #   include "vmsish.h"
@@ -575,6 +594,11 @@ union any {
 #include "mg.h"
 #include "scope.h"
 
+/* work around some libPW problems */
+#ifdef DOINIT
+EXT char Error[1];
+#endif
+
 #if defined(iAPX286) || defined(M_I286) || defined(I80286)
 #   define I286
 #endif
@@ -780,7 +804,7 @@ Off_t lseek _((int,Off_t,int));
 char *getlogin _((void));
 #endif
 
-#ifdef EUNICE
+#ifdef UNLINK_ALL_VERSIONS /* Currently only makes sense for VMS */
 #define UNLINK unlnk
 I32 unlnk _((char*));
 #else
@@ -805,9 +829,12 @@ I32 unlnk _((char*));
 #define SCAN_REPL 2
 
 #ifdef DEBUGGING
-# ifndef register 
+# ifndef register
 #  define register
 # endif
+# ifdef MYMALLOC
+# define DEBUGGING_MSTATS
+# endif
 # define PAD_SV(po) pad_sv(po)
 #else
 # define PAD_SV(po) curpad[po]
@@ -829,18 +856,22 @@ EXT int           egid;           /* current effective group id */
 EXT bool       nomemok;        /* let malloc context handle nomem */
 EXT U32                an;             /* malloc sequence number */
 EXT U32                cop_seqmax;     /* statement sequence number */
-EXT U32                op_seqmax;      /* op sequence number */
+EXT U16                op_seqmax;      /* op sequence number */
 EXT U32                evalseq;        /* eval sequence number */
 EXT U32                sub_generation; /* inc to force methods to be looked up again */
 EXT char **    origenviron;
 EXT U32                origalen;
 EXT U32 *      profiledata;
+EXT int                maxo INIT(MAXO);/* Number of ops */
 
 EXT XPV*       xiv_arenaroot;  /* list of allocated xiv areas */
 EXT IV **      xiv_root;       /* free xiv list--shared by interpreters */
 EXT double *   xnv_root;       /* free xnv list--shared by interpreters */
 EXT XRV *      xrv_root;       /* free xrv list--shared by interpreters */
 EXT XPV *      xpv_root;       /* free xpv list--shared by interpreters */
+EXT HE *       he_root;        /* free he list--shared by interpreters */
+EXT char *     nice_chunk;     /* a nice chunk of memory to reuse */
+EXT U32                nice_chunk_size;/* how nice the chunk of memory is */
 
 /* Stack for currently executing thread--context switch must handle this.     */
 EXT SV **      stack_base;     /* stack->array_ary */
@@ -934,11 +965,11 @@ EXT SV            sv_yes;
 #endif
 
 #ifdef DOINIT
-EXT char *sig_name[] = {
-    SIG_NAME,0
-};
+EXT char *sig_name[] = { SIG_NAME };
+EXT int   sig_num[]  = { SIG_NUM };
 #else
 EXT char *sig_name[];
+EXT int   sig_num[];
 #endif
 
 #ifdef DOINIT
@@ -1079,8 +1110,7 @@ EXT char *        oldbufptr;
 EXT char *     oldoldbufptr;
 EXT char *     bufend;
 EXT expectation expect INIT(XSTATE);   /* how to interpret ambiguous tokens */
-EXT char *     autoboot_preamble INIT(Nullch);
-EXT cryptswitch_t cryptswitch_fp;
+EXT AV *       rsfp_filters;
 
 EXT I32                multi_start;    /* 1st line of multi-line string */
 EXT I32                multi_end;      /* last line of multi-line string */
@@ -1170,13 +1200,16 @@ IEXT SV *       Idiehook;
 IEXT SV *      Iwarnhook;
 IEXT SV *      Iparsehook;
 
+/* Various states of an input record separator SV (rs, nrs) */
+#define RsSNARF(sv)   (! SvOK(sv))
+#define RsSIMPLE(sv)  (SvOK(sv) && SvCUR(sv))
+#define RsPARA(sv)    (SvOK(sv) && ! SvCUR(sv))
+
 /* switches */
 IEXT char *    Icddir;
 IEXT bool      Iminus_c;
 IEXT char      Ipatchlevel[6];
-IEXT char *    Inrs IINIT("\n");
-IEXT U32       Inrschar IINIT('\n');   /* final char of rs, or 0777 if none */
-IEXT I32       Inrslen IINIT(1);
+IEXT SV *      Inrs;
 IEXT char *    Isplitstr IINIT(" ");
 IEXT bool      Ipreprocess;
 IEXT bool      Iminus_n;
@@ -1205,10 +1238,7 @@ IEXT int Iperl_destruct_level;   /* 0=none, 1=full, 2=full with checks */
 IEXT Time_t    Ibasetime;              /* $^T */
 IEXT SV *      Iformfeed;              /* $^L */
 IEXT char *    Ichopset IINIT(" \n-"); /* $: */
-IEXT char *    Irs IINIT("\n");        /* $/ */
-IEXT U32       Irschar IINIT('\n');    /* final char of rs, or 0777 if none */
-IEXT STRLEN    Irslen IINIT(1);
-IEXT bool      Irspara;
+IEXT SV *      Irs;                    /* $/ */
 IEXT char *    Iofs;                   /* $, */
 IEXT STRLEN    Iofslen;
 IEXT char *    Iors;                   /* $\ */
@@ -1240,6 +1270,9 @@ IEXT I32 *        Iscreamnext;
 IEXT I32       Imaxscream IINIT(-1);
 IEXT SV *      Ilastscream;
 
+/* shortcuts to misc objects */
+IEXT GV *      Ierrgv;
+
 /* shortcuts to debugging objects */
 IEXT GV *      IDBgv;
 IEXT GV *      IDBline;
@@ -1287,6 +1320,7 @@ IEXT bool Idirty;         /* In the middle of tearing things down? */
 IEXT U8                Ilocalizing;    /* are we processing a local() list? */
 IEXT bool      Itainted;       /* using variables controlled by $< */
 IEXT bool      Itainting;      /* doing taint checks */
+IEXT char *    Iop_mask IINIT(NULL);   /* masked operations for safe evals */
 
 /* trace state */
 IEXT I32       Idlevel;
@@ -1340,6 +1374,7 @@ IEXT I32  Idumplvl;       /* indentation level on syntax tree dump */
 IEXT PMOP *    Ioldlastpm;     /* for saving regexp context during debugger */
 IEXT I32       Igensym;        /* next symbol for getsym() to define */
 IEXT bool      Ipreambled;
+IEXT AV *      Ipreambleav;
 IEXT int       Ilaststatval IINIT(-1);
 IEXT I32       Ilaststype IINIT(OP_STAT);
 
@@ -1391,56 +1426,56 @@ extern "C" {
 /* The following must follow proto.h */
 
 #ifdef DOINIT
-MGVTBL vtbl_sv =       {magic_get,
+EXT MGVTBL vtbl_sv =   {magic_get,
                                magic_set,
                                        magic_len,
                                                0,      0};
-MGVTBL vtbl_env =      {0,     0,      0,      0,      0};
-MGVTBL vtbl_envelem =  {0,     magic_setenv,
+EXT MGVTBL vtbl_env =  {0,     0,      0,      0,      0};
+EXT MGVTBL vtbl_envelem =      {0,     magic_setenv,
                                        0,      magic_clearenv,
                                                        0};
-MGVTBL vtbl_sig =      {0,     0,               0, 0, 0};
-MGVTBL vtbl_sigelem =  {0,     magic_setsig,
+EXT MGVTBL vtbl_sig =  {0,     0,               0, 0, 0};
+EXT MGVTBL vtbl_sigelem =      {0,     magic_setsig,
                                        0,      0,      0};
-MGVTBL vtbl_pack =     {0,     0,      0,      magic_wipepack,
+EXT MGVTBL vtbl_pack = {0,     0,      0,      magic_wipepack,
                                                        0};
-MGVTBL vtbl_packelem = {magic_getpack,
+EXT MGVTBL vtbl_packelem =     {magic_getpack,
                                magic_setpack,
                                        0,      magic_clearpack,
                                                        0};
-MGVTBL vtbl_dbline =   {0,     magic_setdbline,
+EXT MGVTBL vtbl_dbline =       {0,     magic_setdbline,
                                        0,      0,      0};
-MGVTBL vtbl_isa =      {0,     magic_setisa,
+EXT MGVTBL vtbl_isa =  {0,     magic_setisa,
                                        0,      0,      0};
-MGVTBL vtbl_isaelem =  {0,     magic_setisa,
+EXT MGVTBL vtbl_isaelem =      {0,     magic_setisa,
                                        0,      0,      0};
-MGVTBL vtbl_arylen =   {magic_getarylen,
+EXT MGVTBL vtbl_arylen =       {magic_getarylen,
                                magic_setarylen,
                                        0,      0,      0};
-MGVTBL vtbl_glob =     {magic_getglob,
+EXT MGVTBL vtbl_glob = {magic_getglob,
                                magic_setglob,
                                        0,      0,      0};
-MGVTBL vtbl_mglob =    {0,     magic_setmglob,
+EXT MGVTBL vtbl_mglob =        {0,     magic_setmglob,
                                        0,      0,      0};
-MGVTBL vtbl_taint =    {magic_gettaint,magic_settaint,
+EXT MGVTBL vtbl_taint =        {magic_gettaint,magic_settaint,
                                        0,      0,      0};
-MGVTBL vtbl_substr =   {0,     magic_setsubstr,
+EXT MGVTBL vtbl_substr =       {0,     magic_setsubstr,
                                        0,      0,      0};
-MGVTBL vtbl_vec =      {0,     magic_setvec,
+EXT MGVTBL vtbl_vec =  {0,     magic_setvec,
                                        0,      0,      0};
-MGVTBL vtbl_pos =      {magic_getpos,
+EXT MGVTBL vtbl_pos =  {magic_getpos,
                                magic_setpos,
                                        0,      0,      0};
-MGVTBL vtbl_bm =       {0,     magic_setbm,
+EXT MGVTBL vtbl_bm =   {0,     magic_setbm,
                                        0,      0,      0};
-MGVTBL vtbl_uvar =     {magic_getuvar,
+EXT MGVTBL vtbl_uvar = {magic_getuvar,
                                magic_setuvar,
                                        0,      0,      0};
 
 #ifdef OVERLOAD
-MGVTBL vtbl_amagic =       {0,     magic_setamagic,
+EXT MGVTBL vtbl_amagic =       {0,     magic_setamagic,
                                         0,      0,      magic_setamagic};
-MGVTBL vtbl_amagicelem =   {0,     magic_setamagic,
+EXT MGVTBL vtbl_amagicelem =   {0,     magic_setamagic,
                                         0,      0,      magic_setamagic};
 #endif /* OVERLOAD */