Mercurial > emacs
annotate src/s/vms.h @ 96761:b117e2fe7552
2008-07-17 Fan Kai <fktpp@xemacs.org>
* esh-arg.el (eshell-quote-backslash): Fix eshell path completion
for Windows.
author | John Wiegley <johnw@newartisans.com> |
---|---|
date | Thu, 17 Jul 2008 08:44:20 +0000 |
parents | a7401c5a0faa |
children | d89afa2b4c2f |
rev | line source |
---|---|
457 | 1 /* system description header for VMS |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
2 Copyright (C) 1986, 2001, 2002, 2003, 2004, 2005, 2006, 2007, |
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
3 2008 Free Software Foundation, Inc. |
457 | 4 |
5 This file is part of GNU Emacs. | |
6 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
7 GNU Emacs is free software: you can redistribute it and/or modify |
457 | 8 it under the terms of the GNU General Public License as published by |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
9 the Free Software Foundation, either version 3 of the License, or |
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
10 (at your option) any later version. |
457 | 11 |
12 GNU Emacs is distributed in the hope that it will be useful, | |
13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 GNU General Public License for more details. | |
16 | |
17 You should have received a copy of the GNU General Public License | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
79756
diff
changeset
|
18 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
457 | 19 |
20 /* | |
21 * Define symbols to identify the version of Unix this is. | |
22 * Define all the symbols that apply correctly. | |
23 */ | |
24 | |
25 #ifndef VMS /* Decus cpp doesn't define this but VAX C does */ | |
26 #define VMS | |
27 #endif /* VMS */ | |
28 /* Note that this file is used indirectly via vms4-0.h, or some other | |
29 such file. These other files define a symbol VMS4_0, VMS4_2, etc. */ | |
30 | |
31 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
32 It sets the Lisp variable system-type. */ | |
33 | |
34 #define SYSTEM_TYPE "vax-vms" | |
35 | |
36 /* Letter to use in finding device name of first pty, | |
37 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
38 | |
39 #define FIRST_PTY_LETTER 'a' | |
40 | |
41 /* | |
42 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate | |
43 * The 4.2 opendir, etc., library functions. | |
44 */ | |
45 | |
46 #define NONSYSTEM_DIR_LIBRARY | |
47 | |
48 /* subprocesses should be defined if you want to | |
49 have code for asynchronous subprocesses | |
50 (as used in M-x compile and M-x shell). | |
51 This is generally OS dependent, and not supported | |
52 under most USG systems. */ | |
53 | |
54 #define subprocesses | |
55 | |
56 /* Define the maximum record length for print strings, if needed. */ | |
57 | |
58 #define MAX_PRINT_CHARS 300 | |
59 | |
60 | |
61 /* Here, on a separate page, add any special hacks needed | |
62 to make Emacs work on this system. For example, | |
63 you might define certain system call names that don't | |
64 exist on your system, or that do different things on | |
65 your system and must be used only through an encapsulation | |
66 (Which you should place, by convention, in sysdep.c). */ | |
67 | |
60385
17d5c7245a46
Define NO_HYPHENS_IN_FILENAMES.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60379
diff
changeset
|
68 /* In olden days, VMS filenames did not support hyphen (i.e., the "-" |
17d5c7245a46
Define NO_HYPHENS_IN_FILENAMES.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60379
diff
changeset
|
69 character). You can #undef this in vmsX-Y.h for newer versions. */ |
17d5c7245a46
Define NO_HYPHENS_IN_FILENAMES.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60379
diff
changeset
|
70 |
17d5c7245a46
Define NO_HYPHENS_IN_FILENAMES.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60379
diff
changeset
|
71 #define NO_HYPHENS_IN_FILENAMES |
17d5c7245a46
Define NO_HYPHENS_IN_FILENAMES.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
60379
diff
changeset
|
72 |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
73 /* Do you have the sharable library bug? If you link with a sharable |
457 | 74 library that contains psects with the NOSHR attribute and also refer to |
75 those psects in your program, the linker give you a private version of | |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
76 the psect which is not related to the version used by the sharable |
457 | 77 library. The end result is that your references to variables in that |
78 psect have absolutely nothing to do with library references to what is | |
79 supposed to be the same variable. If you intend to link with the standard | |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
80 C library (NOT the sharable one) you don't need to define this. (This |
457 | 81 is NOT fixed in V4.4...) */ |
82 | |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
83 #define SHARABLE_LIB_BUG |
457 | 84 |
85 /* Partially due to the above mentioned bug and also so that we don't need | |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
86 to require that people have a sharable C library, the default for Emacs |
457 | 87 is to link with the non-shared library. If you want to link with the |
88 shared library, define this and remake xmakefile and fileio.c. This allows | |
89 us to ship a guaranteed executable image. */ | |
90 | |
91 #define LINK_CRTL_SHARE | |
92 | |
93 /* Define this if you want to read the file SYS$SYSTEM:SYSUAF.DAT for user | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
14186
diff
changeset
|
94 information. If you do use this, you must either make SYSUAF.DAT world |
457 | 95 readable or install Emacs with SYSPRV. */ |
96 | |
97 /* #define READ_SYSUAF */ | |
98 | |
60379
8bb5ca4faf36
(FILE_SYSTEM_CASE): New macro.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
99 /* Traditionally, filenames on VMS are always upper case. */ |
8bb5ca4faf36
(FILE_SYSTEM_CASE): New macro.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
100 |
8bb5ca4faf36
(FILE_SYSTEM_CASE): New macro.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
101 #define FILE_SYSTEM_CASE Fupcase |
8bb5ca4faf36
(FILE_SYSTEM_CASE): New macro.
Thien-Thi Nguyen <ttn@gnuvola.org>
parents:
52401
diff
changeset
|
102 |
457 | 103 /* On VMS these have a different name */ |
104 | |
105 #define index strchr | |
106 #define rindex strrchr | |
107 #define unlink delete | |
2245
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
108 |
96643
79121a8f01e3
* config.nt (HAVE_FACES): Remove, unused.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96595
diff
changeset
|
109 #ifndef __GNUC__ |
2245
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
110 extern double mth$dmod(double, double); |
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
111 #endif |
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
112 |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
113 /* Some time routines are missing in the VAX C RTL, or needs some |
2245
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
114 extra bit of code */ |
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
115 #define tzset sys_tzset |
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
116 #define localtime sys_localtime |
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
117 #define gmtime sys_gmtime |
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
118 |
457 | 119 /* On later versions of VMS these exist in the C run time library, but |
120 we are using our own implementations. Hide their names to avoid | |
121 linker errors */ | |
122 #define rename sys_rename | |
123 #define execvp sys_execvp | |
124 #define system sys_system | |
125 | |
2245
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
126 #ifndef GNU_MALLOC |
457 | 127 /* Hide these names so that we don't get linker errors */ |
128 #define malloc sys_malloc | |
129 #define free sys_free | |
130 #define realloc sys_realloc | |
131 #define calloc sys_calloc | |
132 | |
133 /* Don't use the standard brk and sbrk */ | |
134 #define sbrk sys_sbrk | |
135 #define brk sys_brk | |
2245
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
136 #endif |
457 | 137 |
138 /* On VMS we want to avoid reading and writing very large amounts of | |
139 data at once, so we redefine read and write here. */ | |
140 | |
141 #define read sys_read | |
142 #define write sys_write | |
143 | |
144 /* sys_creat just calls the real creat with additional args of | |
145 "rfm=var", "rat=cr" to get "normal" VMS files... */ | |
146 #define creat sys_creat | |
147 | |
148 /* fwrite forces an RMS PUT on every call. This is abysmally slow, so | |
149 we emulate fwrite with fputc, which forces buffering and is much | |
150 faster! */ | |
151 #define fwrite sys_fwrite | |
152 | |
153 /* getuid only returns the member number, which is not unique on most VMS | |
154 systems. We emulate it with (getgid()<<16 | getuid()). */ | |
155 #define getuid sys_getuid | |
156 | |
157 /* If user asks for TERM, check first for EMACS_TERM. */ | |
158 #define getenv sys_getenv | |
49600
23a1cea22d13
Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents:
14186
diff
changeset
|
159 |
457 | 160 /* Standard C abort is less useful than it should be. */ |
161 #define abort sys_abort | |
162 | |
163 /* Case conflicts with C library fread. */ | |
164 #define Fread F_read | |
165 | |
166 /* Case conflicts with C library srandom. */ | |
167 #define Srandom S_random | |
168 | |
169 /* Cause initialization of vmsfns.c to be run. */ | |
170 #define SYMS_SYSTEM syms_of_vmsfns () | |
171 | |
13940
1b0e886a4476
(SHARABLE_LIB_BUG): Renamed from SHAREABLE_LIB_BUG.
Karl Heuer <kwzh@gnu.org>
parents:
8892
diff
changeset
|
172 /* VAXCRTL access doesn't deal with SYSPRV very well (among other oddities...) |
457 | 173 Here, we use $CHKPRO to really determine access. */ |
174 #define access sys_access | |
175 | |
176 #define PAGESIZE 512 | |
177 | |
178 #define _longjmp longjmp | |
179 #define _setjmp setjmp | |
180 | |
181 globalref char sdata[]; | |
182 #define DATA_START (((int) sdata + 511) & ~511) | |
183 #define TEXT_START 512 | |
184 | |
2245
b31d55638c0c
Some VMS changes from Richard Levitte <levitte@e.kth.se>:
Jim Blandy <jimb@redhat.com>
parents:
457
diff
changeset
|
185 #define PURESIZE 330000 |
457 | 186 |
187 /* Stdio FILE type has extra indirect on VMS, so must alter this macro. */ | |
188 | |
189 #define PENDING_OUTPUT_COUNT(FILE) ((*(FILE))->_ptr - (*(FILE))->_base) | |
2433
06fcbff9d381
New macros NULL_DEVICE and EXEC_SUFFIXES, to give the name of the
Jim Blandy <jimb@redhat.com>
parents:
2245
diff
changeset
|
190 |
06fcbff9d381
New macros NULL_DEVICE and EXEC_SUFFIXES, to give the name of the
Jim Blandy <jimb@redhat.com>
parents:
2245
diff
changeset
|
191 #define NULL_DEVICE "NLA0:" |
2459
fd35248ff0d1
* s/vms.h (EXEC_SUFFIXES): Add definition for this.
Jim Blandy <jimb@redhat.com>
parents:
2433
diff
changeset
|
192 |
2644
6d563cf5a260
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2459
diff
changeset
|
193 /* Case conflict with Xlib XFree () */ |
6d563cf5a260
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2459
diff
changeset
|
194 #define xfree emacs_xfree |
6d563cf5a260
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2459
diff
changeset
|
195 |
6d563cf5a260
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2459
diff
changeset
|
196 /* What separator do we use in paths? */ |
6d563cf5a260
* emacs.c (SEPCHAR): Instead of defining this to be ',' on VMS and
Jim Blandy <jimb@redhat.com>
parents:
2459
diff
changeset
|
197 #define SEPCHAR ',' |
52401 | 198 |
199 /* arch-tag: 76bc2b70-46d1-4334-8f12-955c0d0ca6d4 | |
200 (do not change this comment) */ |