diff options
author | Paul Szabo <psz@maths.usyd.edu.au> | 2004-03-19 19:17:56 +1100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2004-03-23 13:38:11 +0000 |
commit | ae3f3efdef21cd5e7aaa929b0e067c679af06832 (patch) | |
tree | cde299b852fe196281b768e89463e9680ce12045 /intrpvar.h | |
parent | 45a2796c78934ddcc83dbc97c4c2f291dc19cfd1 (diff) | |
download | perl-ae3f3efdef21cd5e7aaa929b0e067c679af06832.tar.gz |
5.9.1 suidperl
Message-Id: <200403182117.i2ILHug513080@milan.maths.usyd.edu.au>
(which variables renamed as requested, plus tweaks to work on platforms
with no ST_NOEXEC)
p4raw-id: //depot/perl@22563
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index ee805e6a07..a477777034 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -530,6 +530,11 @@ PERLVARI(Irehash_seed, UV, 0) /* 582 hash initializer */ PERLVARI(Irehash_seed_set, bool, FALSE) /* 582 hash initialized? */ +/* These two variables are needed to preserve 5.8.x bincompat because we can't + change function prototypes of two exported functions. Probably should be + taken out of blead soon, and relevant prototypes changed. */ +PERLVARI(Ifdscript, int, -1) /* fd for script */ +PERLVARI(Isuidscript, int, -1) /* fd for suid script */ /* New variables must be added to the very end, before this comment, * for binary compatibility (the offsets of the old members must not change). * (Don't forget to add your variable also to perl_clone()!) |