Re: [perl #44969] Restricted hashes do not handle private fields properly
[p5sagit/p5-mst-13.2.git] / vms / vmsish.h
CommitLineData
a0d0e21e 1/* vmsish.h
2 *
3 * VMS-specific C header file for perl5.
4 *
2497a41f 5 * revised: 16-Sep-1998 by Charles Bailey bailey@newman.upenn.edu
562a7b0c 6 * Version: 5.5.2
2497a41f 7 *
e886094b 8 * Last revised: 10-Oct-2005 by John Malmberg (HP OpenVMS) wb8twy@qsl.net
2497a41f 9 * Add SYMLINK support, and updated Craig Berry's
10 * largefile support.
a0d0e21e 11 */
12
13#ifndef __vmsish_h_included
14#define __vmsish_h_included
15
16#include <descrip.h> /* for dirent struct definitions */
748a9306 17#include <libdef.h> /* status codes for various places */
18#include <rmsdef.h> /* at which errno and vaxc$errno are */
19#include <ssdef.h> /* explicitly set in the perl source code */
4fdae800 20#include <stsdef.h> /* bitmasks for exit status testing */
748a9306 21
4633a7c4 22/* Suppress compiler warnings from DECC for VMS-specific extensions:
e518068a 23 * ADDRCONSTEXT,NEEDCONSTEXT: initialization of data with non-constant values
24 * (e.g. pointer fields of descriptors)
25 */
bc10a425 26#if defined(__DECC) || defined(__DECCXX)
22d4bb9c 27# pragma message disable (ADDRCONSTEXT,NEEDCONSTEXT)
28#endif
e518068a 29
748a9306 30/* DEC's C compilers and gcc use incompatible definitions of _to(upp|low)er() */
31#ifdef _toupper
32# undef _toupper
33#endif
34#define _toupper(c) (((c) < 'a' || (c) > 'z') ? (c) : (c) & ~040)
35#ifdef _tolower
36# undef _tolower
37#endif
38#define _tolower(c) (((c) < 'A' || (c) > 'Z') ? (c) : (c) | 040)
4633a7c4 39/* DECC 1.3 has a funny definition of abs; it's fixed in DECC 4.0, so this
40 * can go away once DECC 1.3 isn't in use any more. */
22d4bb9c 41#if defined(__ALPHA) && (defined(__DECC) || defined(__DECCXX))
4633a7c4 42#undef abs
43#define abs(__x) __ABS(__x)
44#undef labs
45#define labs(__x) __LABS(__x)
46#endif /* __ALPHA && __DECC */
a0d0e21e 47
48/* Assorted things to look like Unix */
49#ifdef __GNUC__
50#ifndef _IOLBF /* gcc's stdio.h doesn't define this */
51#define _IOLBF 1
52#endif
748a9306 53#endif
a0d0e21e 54#include <processes.h> /* for vfork() */
55#include <unixio.h>
a0d0e21e 56#include <unixlib.h>
57#include <file.h> /* it's not <sys/file.h>, so don't use I_SYS_FILE */
bc10a425 58#if (defined(__DECC) && defined(__DECC_VER) && __DECC_VER > 20000000) || defined(__DECCXX)
59# include <unistd.h> /* DECC has this; gcc doesn't */
09b7f37c 60#endif
61
aa689395 62#ifdef NO_PERL_TYPEDEFS /* a2p; we don't want Perl's special routines */
63# define DONT_MASK_RTL_CALLS
64#endif
65
988c775c 66#include <namdef.h>
67
68/* Set the maximum filespec size here as it is larger for EFS file
69 * specifications.
70 */
71#ifndef __VAX
72#ifndef VMS_MAXRSS
73#ifdef NAML$C_MAXRSS
74#define VMS_MAXRSS (NAML$C_MAXRSS+1)
75#ifndef VMS_LONGNAME_SUPPORT
76#define VMS_LONGNAME_SUPPORT 1
77#endif /* VMS_LONGNAME_SUPPORT */
78#endif /* NAML$C_MAXRSS */
79#endif /* VMS_MAXRSS */
80#endif
81
82#ifndef VMS_MAXRSS
83#define VMS_MAXRSS (NAM$C_MAXRSS + 1)
84#endif
85
86#ifndef MAXPATHLEN
87#define MAXPATHLEN (VMS_MAXRSS - 1)
88#endif
89
90
562a7b0c 91/* Note that we do, in fact, have this */
92#define HAS_GETENV_SV
cc077a9f 93#define HAS_GETENV_LEN
562a7b0c 94
fd8cd3a3 95/* All this stiff is for the x2P programs. Hopefully they'll still work */
96#if defined(PERL_FOR_X2P)
97#ifndef aTHX_
98#define aTHX_
99#endif
100#ifndef pTHX_
101#define pTHX_
102#endif
103#ifndef pTHX
104#define pTHX
105#endif
106#endif
107
aa689395 108#ifndef DONT_MASK_RTL_CALLS
109# ifdef getenv
110# undef getenv
111# endif
562a7b0c 112 /* getenv used for regular logical names */
fd8cd3a3 113# define getenv(v) Perl_my_getenv(aTHX_ v,TRUE)
aa689395 114#endif
19c10e8f 115#ifdef getenv_len
116# undef getenv_len
117#endif
fd8cd3a3 118#define getenv_len(v,l) Perl_my_getenv_len(aTHX_ v,l,TRUE)
aa689395 119
4fdae800 120/* DECC introduces this routine in the RTL as of VMS 7.0; for now,
121 * we'll use ours, since it gives us the full VMS exit status. */
4fdae800 122#define waitpid my_waitpid
123
61bb5906 124/* Don't redeclare standard RTL routines in Perl's header files;
125 * VMS history or extensions makes some of the formal protoypes
126 * differ from the common Unix forms.
127 */
128#define DONT_DECLARE_STD 1
129
bf109933 130/* Our own contribution to PerlShr's global symbols . . . */
562a7b0c 131#define prime_env_iter Perl_prime_env_iter
fd8cd3a3 132#define vms_image_init Perl_vms_image_init
133#define my_tmpfile Perl_my_tmpfile
134#define vmstrnenv Perl_vmstrnenv
5c84aa53 135#if !defined(PERL_IMPLICIT_CONTEXT)
fd8cd3a3 136#define my_getenv_len Perl_my_getenv_len
137#define vmssetenv Perl_vmssetenv
4b19af01 138#define my_trnlnm Perl_my_trnlnm
562a7b0c 139#define my_setenv Perl_my_setenv
5c84aa53 140#define my_getenv Perl_my_getenv
4b19af01 141#define tounixspec Perl_tounixspec
142#define tounixspec_ts Perl_tounixspec_ts
360732b5 143#define tounixspec_utf8 Perl_tounixspec_utf8
144#define tounixspec_utf8_ts Perl_tounixspec_utf8_ts
4b19af01 145#define tovmsspec Perl_tovmsspec
146#define tovmsspec_ts Perl_tovmsspec_ts
360732b5 147#define tovmsspec_utf8 Perl_tovmsspec_utf8
148#define tovmsspec_utf8_ts Perl_tovmsspec_utf8_ts
4b19af01 149#define tounixpath Perl_tounixpath
150#define tounixpath_ts Perl_tounixpath_ts
360732b5 151#define tounixpath_utf8 Perl_tounixpath_utf8
152#define tounixpath_utf8_ts Perl_tounixpath_utf8_ts
153#define tovmspath Perl_tovmspath
4b19af01 154#define tovmspath_ts Perl_tovmspath_ts
360732b5 155#define tovmspath_utf8 Perl_tovmspath_utf8
156#define tovmspath_utf8_ts Perl_tovmspath_utf8_ts
4b19af01 157#define do_rmdir Perl_do_rmdir
158#define fileify_dirspec Perl_fileify_dirspec
159#define fileify_dirspec_ts Perl_fileify_dirspec_ts
360732b5 160#define fileify_dirspec_utf8 Perl_fileify_dirspec_utf8
161#define fileify_dirspec_utf8_ts Perl_fileify_dirspec_utf8_ts
4b19af01 162#define pathify_dirspec Perl_pathify_dirspec
163#define pathify_dirspec_ts Perl_pathify_dirspec_ts
360732b5 164#define pathify_dirspec_utf8 Perl_pathify_dirspec_utf8
165#define pathify_dirspec_utf8_ts Perl_pathify_dirspec_utf8_ts
4b19af01 166#define trim_unixpath Perl_trim_unixpath
167#define opendir Perl_opendir
4fdf8f88 168#define rename Perl_rename
4b19af01 169#define rmscopy Perl_rmscopy
fd8cd3a3 170#define my_mkdir Perl_my_mkdir
171#define vms_do_aexec Perl_vms_do_aexec
172#define vms_do_exec Perl_vms_do_exec
173#define my_waitpid Perl_my_waitpid
174#define my_crypt Perl_my_crypt
175#define kill_file Perl_kill_file
176#define my_utime Perl_my_utime
177#define my_chdir Perl_my_chdir
178#define do_aspawn Perl_do_aspawn
2497a41f 179#define seekdir Perl_seekdir
fd8cd3a3 180#define my_gmtime Perl_my_gmtime
181#define my_localtime Perl_my_localtime
2497a41f 182#define my_time Perl_my_time
fd8cd3a3 183#define do_spawn Perl_do_spawn
184#define flex_fstat Perl_flex_fstat
185#define flex_stat Perl_flex_stat
2497a41f 186#define flex_lstat Perl_flex_lstat
fd8cd3a3 187#define cando_by_name Perl_cando_by_name
188#define my_getpwnam Perl_my_getpwnam
189#define my_getpwuid Perl_my_getpwuid
190#define my_flush Perl_my_flush
191#define readdir Perl_readdir
a9852f7c 192#define readdir_r Perl_readdir_r
5c84aa53 193#else
fd8cd3a3 194#define my_getenv_len(a,b,c) Perl_my_getenv_len(aTHX_ a,b,c)
195#define vmssetenv(a,b,c) Perl_vmssetenv(aTHX_ a,b,c)
4b19af01 196#define my_trnlnm(a,b,c) Perl_my_trnlnm(aTHX_ a,b,c)
360732b5 197#define fileify_dirspec(a,b) Perl_fileify_dirspec(aTHX_ a,b)
198#define fileify_dirspec_ts(a,b) Perl_fileify_dirspec_ts(aTHX_ a,b)
5c84aa53 199#define my_setenv(a,b) Perl_my_setenv(aTHX_ a,b)
200#define my_getenv(a,b) Perl_my_getenv(aTHX_ a,b)
360732b5 201#define tounixspec(a,b) Perl_tounixspec_utf8(aTHX_ a,b,NULL)
202#define tounixspec_ts(a,b) Perl_tounixspec_utf8_ts(aTHX_ a,b,NULL)
203#define tounixspec_utf8(a,b,c) Perl_tounixspec_utf8(aTHX_ a,b,c)
204#define tounixspec_utf8_ts(a,b,c) Perl_tounixspec_utf8_ts(aTHX_ a,b,c)
205#define tovmsspec(a,b) Perl_tovmsspec_utf8(aTHX_ a,b,NULL)
206#define tovmsspec_ts(a,b) Perl_tovmsspec_utf8_ts(aTHX_ a,b)
207#define tovmsspec_utf8(a,b,c) Perl_tovmsspec_utf8(aTHX_ a,b,c)
208#define tovmsspec_utf8_ts(a,b,c) Perl_tovmsspec_utf8_ts(aTHX_ a,b,c)
209#define tounixpath(a,b) Perl_tounixpath_utf8(aTHX_ a,b,NULL)
210#define tounixpath_ts(a,b) Perl_tounixpath_utf8_ts(aTHX_ a,b,NULL)
211#define tounixpath_utf8(a,b,c) Perl_tounixpath_utf8(aTHX_ a,b,c)
212#define tounixpath_utf8_ts(a,b,c) Perl_tounixpath_utf8_ts(aTHX_ a,b,c)
213#define tovmspath(a,b) Perl_tovmspath_utf8(aTHX_ a,b,NULL)
214#define tovmspath_ts(a,b) Perl_tovmspath_utf8_ts(aTHX_ a,b,NULL)
215#define tovmspath_utf8(a,b,c) Perl_tovmspath_utf8(aTHX_ a,b,c)
216#define tovmspath_utf8_ts(a,b,c) Perl_tovmspath_utf8_ts(aTHX_ a,b,c)
4b19af01 217#define do_rmdir(a) Perl_do_rmdir(aTHX_ a)
218#define fileify_dirspec(a,b) Perl_fileify_dirspec(aTHX_ a,b)
219#define fileify_dirspec_ts(a,b) Perl_fileify_dirspec_ts(aTHX_ a,b)
360732b5 220#define fileify_dirspec_utf8(a,b,c) Perl_fileify_dirspec(aTHX_ a,b,utf8)
221#define fileify_dirspec_utf8_ts(a,b,c) Perl_fileify_dirspec_ts(aTHX_ a,b,utf8)
4b19af01 222#define pathify_dirspec Perl_pathify_dirspec
223#define pathify_dirspec_ts Perl_pathify_dirspec_ts
360732b5 224#define pathify_dirspec_utf8 Perl_pathify_dirspec_utf8
225#define pathify_dirspec_utf8_ts Perl_pathify_dirspec_utf8_ts
226#define rmsexpand(a,b,c,d) Perl_rmsexpand_utf8(aTHX_ a,b,c,d,NULL,NULL)
227#define rmsexpand_ts(a,b,c,d) Perl_rmsexpand_utf8_ts(aTHX_ a,b,c,d,NULL,NULL)
228#define rmsexpand_utf8(a,b,c,d,e,f) Perl_rmsexpand_utf8(aTHX_ a,b,c,d,e,f)
229#define rmsexpand_utf8_ts(a,b,c,d,e,f) Perl_rmsexpand_utf8_ts(aTHX_ a,b,c,d,e,f)
4b19af01 230#define trim_unixpath(a,b,c) Perl_trim_unixpath(aTHX_ a,b,c)
231#define opendir(a) Perl_opendir(aTHX_ a)
4fdf8f88 232#define rename(a,b) Perl_rename(aTHX_ a,b)
4b19af01 233#define rmscopy(a,b,c) Perl_rmscopy(aTHX_ a,b,c)
fd8cd3a3 234#define my_mkdir(a,b) Perl_my_mkdir(aTHX_ a,b)
235#define vms_do_aexec(a,b,c) Perl_vms_do_aexec(aTHX_ a,b,c)
236#define vms_do_exec(a) Perl_vms_do_exec(aTHX_ a)
237#define my_waitpid(a,b,c) Perl_my_waitpid(aTHX_ a,b,c)
238#define my_crypt(a,b) Perl_my_crypt(aTHX_ a,b)
239#define kill_file(a) Perl_kill_file(aTHX_ a)
240#define my_utime(a,b) Perl_my_utime(aTHX_ a,b)
241#define my_chdir(a) Perl_my_chdir(aTHX_ a)
242#define do_aspawn(a,b,c) Perl_do_aspawn(aTHX_ a,b,c)
243#define seekdir(a,b) Perl_seekdir(aTHX_ a,b)
244#define my_gmtime(a) Perl_my_gmtime(aTHX_ a)
245#define my_localtime(a) Perl_my_localtime(aTHX_ a)
246#define my_time(a) Perl_my_time(aTHX_ a)
247#define do_spawn(a) Perl_do_spawn(aTHX_ a)
248#define flex_fstat(a,b) Perl_flex_fstat(aTHX_ a,b)
249#define cando_by_name(a,b,c) Perl_cando_by_name(aTHX_ a,b,c)
250#define flex_stat(a,b) Perl_flex_stat(aTHX_ a,b)
4fdf8f88 251#define flex_lstat(a,b) Perl_flex_lstat(aTHX_ a,b)
fd8cd3a3 252#define my_getpwnam(a) Perl_my_getpwnam(aTHX_ a)
253#define my_getpwuid(a) Perl_my_getpwuid(aTHX_ a)
254#define my_flush(a) Perl_my_flush(aTHX_ a)
255#define readdir(a) Perl_readdir(aTHX_ a)
a9852f7c 256#define readdir_r(a,b,c) Perl_readdir_r(aTHX_ a,b,c)
5c84aa53 257#endif
562a7b0c 258#define my_gconvert Perl_my_gconvert
2497a41f 259#define telldir Perl_telldir
562a7b0c 260#define closedir Perl_closedir
261#define vmsreaddirversions Perl_vmsreaddirversions
562a7b0c 262#define my_sigemptyset Perl_my_sigemptyset
263#define my_sigfillset Perl_my_sigfillset
264#define my_sigaddset Perl_my_sigaddset
265#define my_sigdelset Perl_my_sigdelset
266#define my_sigismember Perl_my_sigismember
267#define my_sigprocmask Perl_my_sigprocmask
562a7b0c 268#define my_vfork Perl_my_vfork
bc10a425 269#define my_fdopen Perl_my_fdopen
270#define my_fclose Perl_my_fclose
562a7b0c 271#define my_fwrite Perl_my_fwrite
9fa802f3 272#define my_getpwent() Perl_my_getpwent(aTHX)
273#define my_endpwent() Perl_my_endpwent(aTHX)
562a7b0c 274#define my_getlogin Perl_my_getlogin
2497a41f 275#define init_os_extras Perl_init_os_extras
360732b5 276#define vms_realpath(a, b, c) Perl_vms_realpath(aTHX_ a,b,c)
2497a41f 277#define vms_case_tolerant(a) Perl_vms_case_tolerant(a)
bf109933 278
279/* Delete if at all possible, changing protections if necessary. */
748a9306 280#define unlink kill_file
281
0414b1a0 282/*
283 * Intercept calls to fork, so we know whether subsequent calls to
284 * exec should be handled in VMSish or Unixish style.
285 */
286#define fork my_vfork
aa689395 287#ifndef DONT_MASK_RTL_CALLS /* #defined in vms.c so we see real vfork */
0414b1a0 288# ifdef vfork
289# undef vfork
290# endif
291# define vfork my_vfork
292#endif
293
674d6c38 294/*
295 * Toss in a shim to tmpfile which creates a plain temp file if the
296 * RMS tmp mechanism won't work (e.g. if someone is relying on ACLs
297 * from a specific directory to permit creation of files).
298 */
299#ifndef DONT_MASK_RTL_CALLS
fd8cd3a3 300# define tmpfile Perl_my_tmpfile
674d6c38 301#endif
302
303
0414b1a0 304/* BIG_TIME:
305 * This symbol is defined if Time_t is an unsigned type on this system.
306 */
307#define BIG_TIME
308
0414b1a0 309/* ACME_MESS:
310 * This symbol, if defined, indicates that error messages should be
311 * should be generated in a format that allows the use of the Acme
312 * GUI/editor's autofind feature.
313 */
314#undef ACME_MESS /**/
e518068a 315
44a8e56a 316/* ALTERNATE_SHEBANG:
317 * This symbol, if defined, contains a "magic" string which may be used
318 * as the first line of a Perl program designed to be executed directly
319 * by name, instead of the standard Unix #!. If ALTERNATE_SHEBANG
320 * begins with a character other then #, then Perl will only treat
321 * it as a command line if if finds the string "perl" in the first
322 * word; otherwise it's treated as the first line of code in the script.
323 * (IOW, Perl won't hand off to another interpreter via an alternate
324 * shebang sequence that might be legal Perl code.)
325 */
326#define ALTERNATE_SHEBANG "$"
327
a44ceb8e 328/* Lower case entry points for these are missing in some earlier RTLs
329 * so we borrow the defines and declares from errno.h and upcase them.
330 */
331#if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 50500000)
332# define errno (*CMA$TIS_ERRNO_GET_ADDR())
333# define vaxc$errno (*CMA$TIS_VMSERRNO_GET_ADDR())
334 int *CMA$TIS_ERRNO_GET_ADDR (void); /* UNIX style error code */
335 int *CMA$TIS_VMSERRNO_GET_ADDR (void); /* VMS error (errno == EVMSERR) */
336#endif
337
748a9306 338/* Macros to set errno using the VAX thread-safe calls, if present */
339#if (defined(__DECC) || defined(__DECCXX)) && !defined(__ALPHA)
340# define set_errno(v) (cma$tis_errno_set_value(v))
774d564b 341 void cma$tis_errno_set_value(int __value); /* missing in some errno.h */
748a9306 342# define set_vaxc_errno(v) (vaxc$errno = (v))
343#else
344# define set_errno(v) (errno = (v))
345# define set_vaxc_errno(v) (vaxc$errno = (v))
346#endif
347
ff0cee69 348/* Support for 'vmsish' behaviors enabled with C<use vmsish> pragma */
349
350#define COMPLEX_STATUS 1 /* We track both "POSIX" and VMS values */
351
aa689395 352#define HINT_V_VMSISH 24
744a34f9 353#define HINT_M_VMSISH_STATUS 0x40000000 /* system, $? return VMS status */
a0ed51b3 354#define HINT_M_VMSISH_TIME 0x80000000 /* times are local, not UTC */
6b88bc9c 355#define NATIVE_HINTS (PL_hints >> HINT_V_VMSISH) /* used in op.c */
ff0cee69 356
6b88bc9c 357#define TEST_VMSISH(h) (PL_curcop->op_private & ((h) >> HINT_V_VMSISH))
ff0cee69 358#define VMSISH_STATUS TEST_VMSISH(HINT_M_VMSISH_STATUS)
ff0cee69 359#define VMSISH_TIME TEST_VMSISH(HINT_M_VMSISH_TIME)
360
96e176bf 361/* VMS-specific data storage */
362
363#define HAVE_INTERP_INTERN
364struct interp_intern {
365 int hushed;
7a7fd8e0 366 int posix_exit;
3ff49832 367 double inv_rand_max;
96e176bf 368};
369#define VMSISH_HUSHED (PL_sys_intern.hushed)
370#define MY_INV_RAND_MAX (PL_sys_intern.inv_rand_max)
7a7fd8e0 371#define MY_POSIX_EXIT (PL_sys_intern.posix_exit)
96e176bf 372
562a7b0c 373/* Flags for vmstrnenv() */
374#define PERL__TRNENV_SECURE 0x01
843027b0 375#define PERL__TRNENV_JOIN_SEARCHLIST 0x02
562a7b0c 376
748a9306 377/* Handy way to vet calls to VMS system services and RTL routines. */
bf109933 378#define _ckvmssts(call) STMT_START { register unsigned long int __ckvms_sts; \
748a9306 379 if (!((__ckvms_sts=(call))&1)) { \
380 set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
5c84aa53 381 Perl_croak(aTHX_ "Fatal VMS error (status=%d) at %s, line %d", \
bf109933 382 __ckvms_sts,__FILE__,__LINE__); } } STMT_END
a0d0e21e 383
0414b1a0 384/* Same thing, but don't call back to Perl's croak(); useful for errors
385 * occurring during startup, before Perl's state is initialized */
386#define _ckvmssts_noperl(call) STMT_START { register unsigned long int __ckvms_sts; \
387 if (!((__ckvms_sts=(call))&1)) { \
388 set_errno(EVMSERR); set_vaxc_errno(__ckvms_sts); \
a15cef0c 389 fprintf(stderr,"Fatal VMS error (status=%d) at %s, line %d", \
0414b1a0 390 __ckvms_sts,__FILE__,__LINE__); lib$signal(__ckvms_sts); } } STMT_END
391
a0d0e21e 392#ifdef VMS_DO_SOCKETS
393#include "sockadapt.h"
86774884 394#define PERL_SOCK_SYSREAD_IS_RECV
395#define PERL_SOCK_SYSWRITE_IS_SEND
a0d0e21e 396#endif
397
2497a41f 398#if __CRTL_VER < 70000000
c07a80fd 399#define BIT_BUCKET "_NLA0:"
2497a41f 400#else
401#define BIT_BUCKET "/dev/null"
402#endif
ac5a684e 403#define PERL_SYS_INIT(c,v) MALLOC_CHECK_TAINT2(*c,*v) vms_image_init((c),(v)); PERLIO_INIT; MALLOC_INIT
404#define PERL_SYS_TERM() HINTS_REFCNT_TERM; OP_REFCNT_TERM; PERLIO_TERM; MALLOC_TERM
8cc95fdb 405#define dXSUB_SYS
a0d0e21e 406#define HAS_KILL
407#define HAS_WAIT
408
146174a9 409#define PERL_FS_VER_FMT "%d_%d_%d"
c93fa817 410/* Temporary; we need to add support for this to Configure.Com */
411#ifdef PERL_INC_VERSION_LIST
412# undef PERL_INC_VERSION_LIST
413#endif
146174a9 414
e518068a 415/* VMS:
416 * This symbol, if defined, indicates that the program is running under
417 * VMS. It's a symbol automagically defined by all VMS C compilers I've seen.
418 * Just in case, however . . . */
2fbb330f 419/* Note that code really should be using __VMS to comply with ANSI */
e518068a 420#ifndef VMS
421#define VMS /**/
422#endif
423
424/* HAS_IOCTL:
425 * This symbol, if defined, indicates that the ioctl() routine is
426 * available to set I/O characteristics
a0d0e21e 427 */
670137c2 428#if defined(__CRTL_VER) && __CRTL_VER >= 70000000
429#define HAS_IOCTL /**/
430#else
e518068a 431#undef HAS_IOCTL /**/
670137c2 432#endif
e518068a 433
434/* HAS_UTIME:
435 * This symbol, if defined, indicates that the routine utime() is
436 * available to update the access and modification times of files.
437 */
438#define HAS_UTIME /**/
a0d0e21e 439
e518068a 440/* HAS_GROUP
28e8609d 441 * This symbol, if defined, indicates that the getgrnam() and
442 * getgrgid() routines are available to get group entries.
443 * The getgrent() has a separate definition, HAS_GETGRENT.
e518068a 444 */
445#undef HAS_GROUP /**/
446
447/* HAS_PASSWD
28e8609d 448 * This symbol, if defined, indicates that the getpwnam() and
449 * getpwuid() routines are available to get password entries.
450 * The getpwent() has a separate definition, HAS_GETPWENT.
e518068a 451 */
452#define HAS_PASSWD /**/
453
454#define HAS_KILL
455#define HAS_WAIT
456
0414b1a0 457/* USEMYBINMODE
458 * This symbol, if defined, indicates that the program should
16fe6d59 459 * use the routine my_binmode(FILE *fp, char iotype, int mode) to insure
0414b1a0 460 * that a file is in "binary" mode -- that is, that no translation
461 * of bytes occurs on read or write operations.
462 */
562a7b0c 463#undef USEMYBINMODE
0414b1a0 464
61bb5906 465/* Stat_t:
466 * This symbol holds the type used to declare buffers for information
467 * returned by stat(). It's usually just struct stat. It may be necessary
468 * to include <sys/stat.h> and <sys/types.h> to get any typedef'ed
469 * information.
470 */
471/* VMS:
472 * We need this typedef to point to the new type even if DONT_MASK_RTL_CALLS
473 * is in effect, since Perl's thread.h embeds one of these structs in its
474 * thread data struct, and our struct mystat is a different size from the
475 * regular struct stat (cf. note above about having to pad struct to work
476 * around bug in compiler.)
477 * It's OK to pass one of these to the RTL's stat(), though, since the
478 * fields it fills are the same in each struct.
479 */
480#define Stat_t struct mystat
481
482/* USE_STAT_RDEV:
483* This symbol is defined if this system has a stat structure declaring
484* st_rdev
485* VMS: Field exists in POSIXish version of struct stat(), but is not used.
2497a41f 486*
487* No definition of what value an operating system or file system should
488* put in the st_rdev field has been found by me so far. Examination of
489* LINUX source code indicates that the value is both very platform and
490* file system specific, with many filesystems just putting 1 or 0 in it.
491* J. Malmberg.
61bb5906 492*/
493#undef USE_STAT_RDEV /**/
494
a0d0e21e 495/*
496 * fwrite1() should be a routine with the same calling sequence as fwrite(),
497 * but which outputs all of the bytes requested as a single stream (unlike
498 * fwrite() itself, which on some systems outputs several distinct records
499 * if the number_of_items parameter is >1).
500 */
501#define fwrite1 my_fwrite
502
bc10a425 503
504#ifndef DONT_MASK_RTL_CALLS
a15cef0c 505# define fwrite my_fwrite /* for PerlSIO_fwrite */
bc10a425 506# define fdopen my_fdopen
507# define fclose my_fclose
508#endif
509
510
d27fe803 511/* By default, flush data all the way to disk, not just to RMS buffers */
512#define Fflush(fp) my_flush(fp)
513
a0d0e21e 514/* Use our own rmdir() */
2497a41f 515#ifndef DONT_MASK_RTL_CALLS
a0d0e21e 516#define rmdir(name) do_rmdir(name)
2497a41f 517#endif
a0d0e21e 518
519/* Assorted fiddling with sigs . . . */
520# include <signal.h>
521#define ABORT() abort()
522
704c2eb3 523#ifdef I_UTIME
524#include <utime.h>
525#else
748a9306 526/* Used with our my_utime() routine in vms.c */
527struct utimbuf {
528 time_t actime;
529 time_t modtime;
530};
704c2eb3 531#endif
532#ifndef DONT_MASK_RTL_CALLS
748a9306 533#define utime my_utime
704c2eb3 534#endif
748a9306 535
0414b1a0 536/* This is what times() returns, but <times.h> calls it tbuffer_t on VMS
537 * prior to v7.0. We check the DECC manifest to see whether it's already
538 * done this for us, relying on the fact that perl.h #includes <time.h>
539 * before it #includes "vmsish.h".
540 */
a0d0e21e 541
0414b1a0 542#ifndef __TMS
543 struct tms {
544 clock_t tms_utime; /* user time */
545 clock_t tms_stime; /* system time - always 0 on VMS */
546 clock_t tms_cutime; /* user time, children */
547 clock_t tms_cstime; /* system time, children - always 0 on VMS */
548 };
5f05dabc 549#else
550 /* The new headers change the times() prototype to tms from tbuffer */
551# define tbuffer_t struct tms
0414b1a0 552#endif
a0d0e21e 553
61bb5906 554/* Substitute our own routines for gmtime(), localtime(), and time(),
555 * which allow us to implement the vmsish 'time' pragma, and work
556 * around absence of system-level UTC support on old versions of VMS.
e518068a 557 */
558#define gmtime(t) my_gmtime(t)
ff0cee69 559#define localtime(t) my_localtime(t)
560#define time(t) my_time(t)
61bb5906 561
562/* If we're using an older version of VMS whose Unix signal emulation
563 * isn't very POSIXish, then roll our own.
564 */
565#if __VMS_VER < 70000000 || __DECC_VER < 50200000
566# define HOMEGROWN_POSIX_SIGNALS
567#endif
568#ifdef HOMEGROWN_POSIX_SIGNALS
569# define sigemptyset(t) my_sigemptyset(t)
570# define sigfillset(t) my_sigfillset(t)
571# define sigaddset(t, u) my_sigaddset(t, u)
572# define sigdelset(t, u) my_sigdelset(t, u)
573# define sigismember(t, u) my_sigismember(t, u)
574# define sigprocmask(t, u, v) my_sigprocmask(t, u, v)
09b7f37c 575# ifndef _SIGSET_T
61bb5906 576 typedef int sigset_t;
09b7f37c 577# endif
61bb5906 578 /* The tools for sigprocmask() are there, just not the routine itself */
579# ifndef SIG_UNBLOCK
580# define SIG_UNBLOCK 1
581# endif
582# ifndef SIG_BLOCK
583# define SIG_BLOCK 2
584# endif
585# ifndef SIG_SETMASK
586# define SIG_SETMASK 3
587# endif
588# define sigaction sigvec
589# define sa_flags sv_onstack
590# define sa_handler sv_handler
591# define sa_mask sv_mask
592# define sigsuspend(set) sigpause(*set)
593# define sigpending(a) (not_here("sigpending"),0)
5c2d7af2 594#else
595/*
596 * The C RTL's sigaction fails to check for invalid signal numbers so we
597 * help it out a bit.
598 */
599# ifndef DONT_MASK_RTL_CALLS
8df869cb 600# define sigaction(a,b,c) Perl_my_sigaction(aTHX_ a,b,c)
5c2d7af2 601# endif
7b62b82b 602#endif
f2610a60 603#ifdef KILL_BY_SIGPRC
604# define kill Perl_my_kill
605#endif
606
e518068a 607
a0d0e21e 608/* VMS doesn't use a real sys_nerr, but we need this when scanning for error
609 * messages in text strings . . .
610 */
611
612#define sys_nerr EVMSERR /* EVMSERR is as high as we can go. */
613
614/* Look up new %ENV values on the fly */
615#define DYNAMIC_ENV_FETCH 1
aa689395 616 /* Special getenv function for retrieving %ENV elements. */
562a7b0c 617#define ENVgetenv(v) my_getenv(v,FALSE)
a6c40364 618#define ENVgetenv_len(v,l) my_getenv_len(v,l,FALSE)
aa689395 619
a0d0e21e 620
22d4bb9c 621/* Thin jacket around cuserid() to match Unix' calling sequence */
c07a80fd 622#define getlogin my_getlogin
623
bc10a425 624/* Ditto for sys$hash_password() . . . */
fd8cd3a3 625#define crypt(a,b) Perl_my_crypt(aTHX_ a,b)
c07a80fd 626
ee8c7f54 627/* Tweak arg to mkdir & chdir first, so we can tolerate trailing /. */
fd8cd3a3 628#define Mkdir(dir,mode) Perl_my_mkdir(aTHX_ (dir),(mode))
ee8c7f54 629#define Chdir(dir) my_chdir((dir))
8cc95fdb 630
a0d0e21e 631/* Use our own stat() clones, which handle Unix-style directory names */
632#define Stat(name,bufptr) flex_stat(name,bufptr)
fd8cd3a3 633#define Fstat(fd,bufptr) Perl_flex_fstat(aTHX_ fd,bufptr)
10d1eec1 634#ifndef DONT_MASK_RTL_CALLS
635#define lstat(name, bufptr) Perl_flex_lstat(name, bufptr)
636#endif
a0d0e21e 637
638/* Setup for the dirent routines:
639 * opendir(), closedir(), readdir(), seekdir(), telldir(), and
640 * vmsreaddirversions(), and preprocessor stuff on which these depend:
641 * Written by Rich $alz, <rsalz@bbn.com> in August, 1990.
2497a41f 642 *
a0d0e21e 643 */
2497a41f 644
657054d4 645/* Flags for the _dirdesc structure */
646#define PERL_VMSDIR_M_VERSIONS 0x02 /* Want VMS versions */
647#define PERL_VMSDIR_M_UNIXSPECS 0x04 /* Want UNIX specifications */
648
649
a0d0e21e 650 /* Data structure returned by READDIR(). */
ddcbaa1c 651struct dirent {
a0d0e21e 652 char d_name[256]; /* File name */
2497a41f 653 int d_namlen; /* Length of d_name */
a0d0e21e 654 int vms_verscount; /* Number of versions */
655 int vms_versions[20]; /* Version numbers */
656};
657
658 /* Handle returned by opendir(), used by the other routines. You
659 * are not supposed to care what's inside this structure. */
ddcbaa1c 660typedef struct _dirdesc {
a0d0e21e 661 long context;
657054d4 662 int flags;
a0d0e21e 663 unsigned long int count;
664 char *pattern;
ddcbaa1c 665 struct dirent entry;
a0d0e21e 666 struct dsc$descriptor_s pat;
a9852f7c 667 void *mutex;
ddcbaa1c 668} DIR;
a0d0e21e 669
2497a41f 670
a0d0e21e 671#define rewinddir(dirp) seekdir((dirp), 0)
672
748a9306 673/* used for our emulation of getpw* */
674struct passwd {
675 char *pw_name; /* Username */
676 char *pw_passwd;
677 Uid_t pw_uid; /* UIC member number */
678 Gid_t pw_gid; /* UIC group number */
679 char *pw_comment; /* Default device/directory (Unix-style) */
680 char *pw_gecos; /* Owner */
681 char *pw_dir; /* Default device/directory (VMS-style) */
682 char *pw_shell; /* Default CLI name (eg. DCL) */
683};
684#define pw_unixdir pw_comment /* Default device/directory (Unix-style) */
685#define getpwnam my_getpwnam
686#define getpwuid my_getpwuid
687#define getpwent my_getpwent
688#define endpwent my_endpwent
689#define setpwent my_endpwent
690
691/* Our own stat_t substitute, since we play with st_dev and st_ino -
692 * we want atomic types so Unix-bound code which compares these fields
c07a80fd 693 * for two files will work most of the time under VMS.
694 * N.B. 1. The st_ino hack assumes that sizeof(unsigned short[3]) ==
695 * sizeof(unsigned) + sizeof(unsigned short). We can't use a union type
696 * to map the unsigned int we want and the unsigned short[3] the CRTL
697 * returns into the same member, since gcc has different ideas than DECC
698 * and VAXC about sizing union types.
22d4bb9c 699 * N.B. 2. The routine cando() in vms.c assumes that &stat.st_ino is the
c07a80fd 700 * address of a FID.
748a9306 701 */
702/* First, grab the system types, so we don't clobber them later */
703#include <stat.h>
704/* Since we've got to match the size of the CRTL's stat_t, we need
705 * to mimic DECC's alignment settings.
2497a41f 706 *
707 * The simplest thing is to just put a wrapper around the stat structure
708 * supplied by the CRTL and use #defines to redirect references to the
709 * members to the real names.
748a9306 710 */
2497a41f 711
e0261ef8 712#if defined(__DECC) || defined(__DECCXX)
713# pragma __member_alignment __save
714# pragma member_alignment
715#endif
716
2497a41f 717typedef unsigned mydev_t;
718#ifndef _LARGEFILE
719typedef unsigned myino_t;
720#else
721typedef __ino64_t myino_t;
748a9306 722#endif
e0261ef8 723
748a9306 724struct mystat
725{
2497a41f 726 struct stat crtl_stat;
727 myino_t st_ino;
728#ifndef _LARGEFILE
729 unsigned rvn; /* FID (num,seq,rvn) + pad */
730#endif
731 mydev_t st_dev;
732 char st_devnam[256]; /* Cache the (short) VMS name */
748a9306 733};
e0261ef8 734
2497a41f 735#define st_mode crtl_stat.st_mode
736#define st_nlink crtl_stat.st_nlink
737#define st_uid crtl_stat.st_uid
738#define st_gid crtl_stat.st_gid
739#define st_rdev crtl_stat.st_rdev
740#define st_size crtl_stat.st_size
741#define st_atime crtl_stat.st_atime
742#define st_mtime crtl_stat.st_mtime
743#define st_ctime crtl_stat.st_ctime
744#define st_fab_rfm crtl_stat.st_fab_rfm
745#define st_fab_rat crtl_stat.st_fab_rat
746#define st_fab_fsz crtl_stat.st_fab_fsz
682e4b71 747#define st_fab_mrs crtl_stat.st_fab_mrs
748
749#ifdef _USE_STD_STAT
750#define VMS_INO_T_COMPARE(__a, __b) (__a != __b)
cfcfe586 751#define VMS_INO_T_COPY(__a, __b) __a = __b
682e4b71 752#else
753#define VMS_INO_T_COMPARE(__a, __b) memcmp(&__a, &__b, 6)
754#define VMS_INO_T_COPY(__a, __b) memcpy(&__a, &__b, 6)
755#endif
e0261ef8 756
e0261ef8 757#if defined(__DECC) || defined(__DECCXX)
758# pragma __member_alignment __restore
759#endif
760
a44ceb8e 761/*
762 * DEC C previous to 6.0 corrupts the behavior of the /prefix
763 * qualifier with the extern prefix pragma. This provisional
764 * hack circumvents this prefix pragma problem in previous
765 * precompilers.
766 */
767#if defined(__VMS_VER) && __VMS_VER >= 70000000
768# if defined(VMS_WE_ARE_CASE_SENSITIVE) && (__DECC_VER < 60000000)
769# pragma __extern_prefix save
770# pragma __extern_prefix "" /* set to empty to prevent prefixing */
771# define geteuid decc$__unix_geteuid
772# define getuid decc$__unix_getuid
773# define stat(__p1,__p2) decc$__utc_stat(__p1,__p2)
774# define fstat(__p1,__p2) decc$__utc_fstat(__p1,__p2)
775# pragma __extern_prefix restore
776# endif
777#endif
778
aa689395 779#ifndef DONT_MASK_RTL_CALLS /* defined for vms.c so we can see RTL calls */
780# ifdef stat
781# undef stat
782# endif
783# define stat mystat
784# define dev_t mydev_t
785# define ino_t myino_t
786#endif
748a9306 787/* Cons up a 'delete' bit for testing access */
788#define S_IDUSR (S_IWUSR | S_IXUSR)
789#define S_IDGRP (S_IWGRP | S_IXGRP)
790#define S_IDOTH (S_IWOTH | S_IXOTH)
a0d0e21e 791
a44ceb8e 792
a0d0e21e 793/* Prototypes for functions unique to vms.c. Don't include replacements
794 * for routines in the mainline source files excluded by #ifndef VMS;
795 * their prototypes are already in proto.h.
796 *
797 * In order to keep Gen_ShrFls.Pl happy, functions which are to be made
798 * available to images linked to PerlShr.Exe must be declared between the
799 * __VMS_PROTOTYPES__ and __VMS_SEPYTOTORP__ lines, and must be in the form
20ce7b12 800 * <data type><TAB>name<WHITESPACE>(<prototype args>);
a0d0e21e 801 */
94c456c4 802
44a8e56a 803#ifdef NO_PERL_TYPEDEFS
804 /* We don't have Perl typedefs available (e.g. when building a2p), so
805 we fake them here. N.B. There is *no* guarantee that the faked
806 prototypes will actually match the real routines. If you want to
807 call Perl routines, include perl.h to get the real typedefs. */
808# ifndef bool
809# define bool int
810# define __MY_BOOL_TYPE_FAKE
811# endif
812# ifndef I32
813# define I32 int
814# define __MY_I32_TYPE_FAKE
815# endif
816# ifndef SV
817# define SV void /* Since we only see SV * in prototypes */
818# define __MY_SV_TYPE_FAKE
819# endif
820#endif
821
20ce7b12 822void prime_env_iter (void);
2fbb330f 823void init_os_extras (void);
7a7fd8e0 824int Perl_vms_status_to_unix(int vms_status, int child_flag);
825int Perl_unix_status_to_vms(int unix_status);
c07a80fd 826/* prototype section start marker; `typedef' passes through cpp */
827typedef char __VMS_PROTOTYPES__;
fd8cd3a3 828int Perl_vmstrnenv (const char *, char *, unsigned long int, struct dsc$descriptor_s **, unsigned long int);
360732b5 829char * Perl_vms_realpath (pTHX_ const char *, char *, int *);
5c84aa53 830#if !defined(PERL_IMPLICIT_CONTEXT)
2497a41f 831int Perl_vms_case_tolerant(void);
5c84aa53 832char * Perl_my_getenv (const char *, bool);
4b19af01 833int Perl_my_trnlnm (const char *, char *, unsigned long int);
b8ffc8df 834char * Perl_tounixspec (const char *, char *);
835char * Perl_tounixspec_ts (const char *, char *);
360732b5 836char * Perl_tounixspec_utf8 (const char *, char *, int *);
837char * Perl_tounixspec_utf8_ts (const char *, char *, int *);
2fbb330f 838char * Perl_tovmsspec (const char *, char *);
839char * Perl_tovmsspec_ts (const char *, char *);
360732b5 840char * Perl_tovmsspec_utf8 (const char *, char *, int *);
841char * Perl_tovmsspec_utf8_ts (const char *, char *, int *);
b8ffc8df 842char * Perl_tounixpath (const char *, char *);
843char * Perl_tounixpath_ts (const char *, char *);
360732b5 844char * Perl_tounixpath_utf8 (const char *, char *, int *);
845char * Perl_tounixpath_utf8_ts (const char *, char *, int *);
b8ffc8df 846char * Perl_tovmspath (const char *, char *);
847char * Perl_tovmspath_ts (const char *, char *);
360732b5 848char * Perl_tovmspath_utf8 (const char *, char *, int *);
849char * Perl_tovmspath_utf8_ts (const char *, char *, int *);
b8ffc8df 850int Perl_do_rmdir (const char *);
851char * Perl_fileify_dirspec (const char *, char *);
852char * Perl_fileify_dirspec_ts (const char *, char *);
360732b5 853char * Perl_fileify_dirspec_utf8 (const char *, char *, int *);
854char * Perl_fileify_dirspec_utf8_ts (const char *, char *, int *);
b8ffc8df 855char * Perl_pathify_dirspec (const char *, char *);
856char * Perl_pathify_dirspec_ts (const char *, char *);
360732b5 857char * Perl_pathify_dirspec_utf8 (const char *, char *, int *);
858char * Perl_pathify_dirspec_utf8_ts (const char *, char *, int *);
2fbb330f 859char * Perl_rmsexpand (const char *, char *, const char *, unsigned);
860char * Perl_rmsexpand_ts (const char *, char *, const char *, unsigned);
360732b5 861char * Perl_rmsexpand_utf8 (const char *, char *, const char *, unsigned, int *, int *);
862char * Perl_rmsexpand_utf8_ts (const char *, char *, const char *, unsigned, int *, int *);
2fbb330f 863int Perl_trim_unixpath (char *, const char*, int);
ddcbaa1c 864DIR * Perl_opendir (const char *);
4fdf8f88 865int Perl_rename(const char *, const char *);
2fbb330f 866int Perl_rmscopy (const char *, const char *, int);
b8ffc8df 867int Perl_my_mkdir (const char *, Mode_t);
fd8cd3a3 868bool Perl_vms_do_aexec (SV *, SV **, SV **);
5c84aa53 869#else
870char * Perl_my_getenv (pTHX_ const char *, bool);
4b19af01 871int Perl_my_trnlnm (pTHX_ const char *, char *, unsigned long int);
b8ffc8df 872char * Perl_tounixspec (pTHX_ const char *, char *);
873char * Perl_tounixspec_ts (pTHX_ const char *, char *);
360732b5 874char * Perl_tounixspec_utf8 (pTHX_ const char *, char *, int *);
875char * Perl_tounixspec_utf8_ts (pTHX_ const char *, char *, int *);
2fbb330f 876char * Perl_tovmsspec (pTHX_ const char *, char *);
877char * Perl_tovmsspec_ts (pTHX_ const char *, char *);
360732b5 878char * Perl_tovmsspec_utf8 (pTHX_ const char *, char *, int *);
879char * Perl_tovmsspec_utf8_ts (pTHX_ const char *, char *, int *);
b8ffc8df 880char * Perl_tounixpath (pTHX_ const char *, char *);
881char * Perl_tounixpath_ts (pTHX_ const char *, char *);
360732b5 882char * Perl_tounixpath_utf8 (pTHX_ const char *, char *, int *);
883char * Perl_tounixpath_utf8_ts (pTHX_ const char *, char *, int *);
b8ffc8df 884char * Perl_tovmspath (pTHX_ const char *, char *);
885char * Perl_tovmspath_ts (pTHX_ const char *, char *);
360732b5 886char * Perl_tovmspath_utf8 (pTHX_ const char *, char *, int *);
887char * Perl_tovmspath_utf8_ts (pTHX_ const char *, char *, int *);
b8ffc8df 888int Perl_do_rmdir (pTHX_ const char *);
889char * Perl_fileify_dirspec (pTHX_ const char *, char *);
890char * Perl_fileify_dirspec_ts (pTHX_ const char *, char *);
360732b5 891char * Perl_fileify_dirspec_utf8 (pTHX_ const char *, char *, int *);
892char * Perl_fileify_dirspec_utf8_ts (pTHX_ const char *, char *, int *);
b8ffc8df 893char * Perl_pathify_dirspec (pTHX_ const char *, char *);
894char * Perl_pathify_dirspec_ts (pTHX_ const char *, char *);
360732b5 895char * Perl_pathify_dirspec_utf8 (pTHX_ const char *, char *, int *);
896char * Perl_pathify_dirspec_utf8_ts (pTHX_ const char *, char *, int *);
2fbb330f 897char * Perl_rmsexpand (pTHX_ const char *, char *, const char *, unsigned);
898char * Perl_rmsexpand_ts (pTHX_ const char *, char *, const char *, unsigned);
360732b5 899char * Perl_rmsexpand_utf8 (pTHX_ const char *, char *, const char *, unsigned, int *, int *);
900char * Perl_rmsexpand_utf8_ts (pTHX_ const char *, char *, const char *, unsigned, int *, int *);
2fbb330f 901int Perl_trim_unixpath (pTHX_ char *, const char*, int);
ddcbaa1c 902DIR * Perl_opendir (pTHX_ const char *);
4fdf8f88 903int Perl_rename (pTHX_ const char *, const char *);
2fbb330f 904int Perl_rmscopy (pTHX_ const char *, const char *, int);
b8ffc8df 905int Perl_my_mkdir (pTHX_ const char *, Mode_t);
fd8cd3a3 906bool Perl_vms_do_aexec (pTHX_ SV *, SV **, SV **);
907#endif
2497a41f 908int Perl_vms_case_tolerant(void);
fd8cd3a3 909char * Perl_my_getenv_len (pTHX_ const char *, unsigned long *, bool);
2c590a56 910int Perl_vmssetenv (pTHX_ const char *, const char *, struct dsc$descriptor_s **);
2fbb330f 911void Perl_vmssetuserlnm(pTHX_ const char *name, const char *eqv);
fd8cd3a3 912char * Perl_my_crypt (pTHX_ const char *, const char *);
913Pid_t Perl_my_waitpid (pTHX_ Pid_t, int *, int);
20ce7b12 914char * my_gconvert (double, int, int, char *);
b8ffc8df 915int Perl_kill_file (pTHX_ const char *);
916int Perl_my_chdir (pTHX_ const char *);
2fbb330f 917FILE * Perl_my_tmpfile (void);
5c2d7af2 918#ifndef HOMEGROWN_POSIX_SIGNALS
919int Perl_my_sigaction (pTHX_ int, const struct sigaction*, struct sigaction*);
920#endif
f2610a60 921#ifdef KILL_BY_SIGPRC
2e34cc90 922unsigned int Perl_sig_to_vmscondition (int);
f2610a60 923int Perl_my_kill (int, int);
2e34cc90 924void Perl_csighandler_init (void);
f2610a60 925#endif
94a11853 926int Perl_my_utime (pTHX_ const char *, const struct utimbuf *);
fd8cd3a3 927void Perl_vms_image_init (int *, char ***);
ddcbaa1c 928struct dirent * Perl_readdir (pTHX_ DIR *);
929int Perl_readdir_r(pTHX_ DIR *, struct dirent *, struct dirent **);
930long Perl_telldir (DIR *);
931void Perl_seekdir (pTHX_ DIR *, long);
932void Perl_closedir (DIR *);
933void vmsreaddirversions (DIR *, int);
fd8cd3a3 934struct tm * Perl_my_gmtime (pTHX_ const time_t *);
935struct tm * Perl_my_localtime (pTHX_ const time_t *);
936time_t Perl_my_time (pTHX_ time_t *);
61bb5906 937#ifdef HOMEGROWN_POSIX_SIGNALS
20ce7b12 938int my_sigemptyset (sigset_t *);
939int my_sigfillset (sigset_t *);
940int my_sigaddset (sigset_t *, int);
941int my_sigdelset (sigset_t *, int);
942int my_sigismember (sigset_t *, int);
943int my_sigprocmask (int, sigset_t *, sigset_t *);
5b411029 944#endif
03e3cfa3 945I32 Perl_cando_by_name (pTHX_ I32, bool, const char *);
fd8cd3a3 946int Perl_flex_fstat (pTHX_ int, Stat_t *);
2497a41f 947int Perl_flex_lstat (pTHX_ const char *, Stat_t *);
fd8cd3a3 948int Perl_flex_stat (pTHX_ const char *, Stat_t *);
2fbb330f 949int my_vfork (void);
950bool Perl_vms_do_exec (pTHX_ const char *);
fd8cd3a3 951unsigned long int Perl_do_aspawn (pTHX_ void *, void **, void **);
2fbb330f 952unsigned long int Perl_do_spawn (pTHX_ const char *);
0dac06c4 953FILE * my_fdopen (int, const char *);
bc10a425 954int my_fclose (FILE *);
a15cef0c 955int my_fwrite (const void *, size_t, size_t, FILE *);
fd8cd3a3 956int Perl_my_flush (pTHX_ FILE *);
2fbb330f 957struct passwd * Perl_my_getpwnam (pTHX_ const char *name);
fd8cd3a3 958struct passwd * Perl_my_getpwuid (pTHX_ Uid_t uid);
9fa802f3 959void Perl_my_endpwent (pTHX);
2fbb330f 960char * my_getlogin (void);
c07a80fd 961typedef char __VMS_SEPYTOTORP__;
962/* prototype section end marker; `typedef' passes through cpp */
a0d0e21e 963
44a8e56a 964#ifdef NO_PERL_TYPEDEFS /* We'll try not to scramble later files */
965# ifdef __MY_BOOL_TYPE_FAKE
966# undef bool
967# undef __MY_BOOL_TYPE_FAKE
968# endif
969# ifdef __MY_I32_TYPE_FAKE
970# undef I32
971# undef __MY_I32_TYPE_FAKE
972# endif
973# ifdef __MY_SV_TYPE_FAKE
974# undef SV
975# undef __MY_SV_TYPE_FAKE
976# endif
977#endif
978
a0d0e21e 979#ifndef VMS_DO_SOCKETS
748a9306 980/* This relies on tricks in perl.h to pick up that these manifest constants
981 * are undefined and set up conversion routines. It will then redefine
982 * these manifest constants, so the actual values will match config.h
983 */
984#undef HAS_HTONS
985#undef HAS_NTOHS
986#undef HAS_HTONL
987#undef HAS_NTOHL
a0d0e21e 988#endif
989
3b7650f4 990/* The C RTL manual says to undef the macro for DEC C 5.2 and lower. */
991#if defined(fileno) && defined(__DECC_VER) && __DECC_VER < 50300000
992# undef fileno
993#endif
994
22d4bb9c 995#define NO_ENVIRON_ARRAY
996
e886094b 997/* RMSEXPAND options */
998#define PERL_RMSEXPAND_M_VMS 0x02 /* Force output to VMS format */
999#define PERL_RMSEXPAND_M_LONG 0x04 /* Expand to long name format */
a1887106 1000#define PERL_RMSEXPAND_M_VMS_IN 0x08 /* Assume input is VMS already */
e886094b 1001#define PERL_RMSEXPAND_M_SYMLINK 0x20 /* Use symbolic link, not target */
1002
a0d0e21e 1003#endif /* __vmsish_h_included */