Mercurial > emacs
annotate src/s/msdos.h @ 96534:3c59978645a2
*** empty log message ***
author | John Paul Wallington <jpw@pobox.com> |
---|---|
date | Sun, 06 Jul 2008 14:39:49 +0000 |
parents | f9d35151b907 |
children | 79121a8f01e3 |
rev | line source |
---|---|
5503 | 1 /* System description file for MS-DOS |
2 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
3 Copyright (C) 1993, 1996, 1997, 2001, 2002, 2003, 2004, 2005, 2006, |
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
4 2007, 2008 Free Software Foundation, Inc. |
5503 | 5 |
6 This file is part of GNU Emacs. | |
7 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
92159
diff
changeset
|
8 GNU Emacs is free software: you can redistribute it and/or modify |
5503 | 9 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:
92159
diff
changeset
|
10 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:
92159
diff
changeset
|
11 (at your option) any later version. |
5503 | 12 |
13 GNU Emacs is distributed in the hope that it will be useful, | |
14 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 GNU General Public License for more details. | |
17 | |
18 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:
92159
diff
changeset
|
19 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
5503 | 20 |
21 /* Note: lots of stuff here was taken from s-msdos.h in demacs. */ | |
22 | |
23 | |
24 /* | |
25 * Define symbols to identify the version of Unix this is. | |
26 * Define all the symbols that apply correctly. | |
27 */ | |
28 | |
29 #ifndef MSDOS | |
30 #define MSDOS | |
31 #endif | |
9798 | 32 |
13177
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
33 #ifdef __GO32__ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
34 #ifndef __DJGPP__ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
35 #define __DJGPP__ 1 /* V2 defines __DJGPP__ == 2 */ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
36 #endif |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
37 #else |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
38 You lose; /* Emacs for DOS must be compiled with DJGPP */ |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
39 #endif |
439506fa922e
Check that DJGPP v. 1 is used.
Kim F. Storm <storm@cua.dk>
parents:
13041
diff
changeset
|
40 |
9798 | 41 #define DOS_NT /* MSDOS or WINDOWSNT */ |
16220
02044b05d8e0
Replaced symbol BSD with BSD_SYSTEM.
Karl Heuer <kwzh@gnu.org>
parents:
15220
diff
changeset
|
42 #undef BSD_SYSTEM |
5503 | 43 #undef VMS |
44 | |
45 /* SYSTEM_TYPE should indicate the kind of system you are using. | |
46 It sets the Lisp variable system-type. */ | |
47 | |
48 #define SYSTEM_TYPE "ms-dos" | |
49 | |
17453
42bddf2eebad
(SYMS_SYSTEM): Add `syms_of_win16select'.
Eli Zaretskii <eliz@gnu.org>
parents:
16220
diff
changeset
|
50 #define SYMS_SYSTEM syms_of_dosfns();syms_of_msdos();syms_of_win16select() |
5503 | 51 |
52 /* NOMULTIPLEJOBS should be defined if your system's shell | |
53 does not have "job control" (the ability to stop a program, | |
54 run some other program, then continue the first one). */ | |
55 | |
56 #define NOMULTIPLEJOBS | |
57 | |
58 /* Emacs can read input using SIGIO and buffering characters itself, | |
59 or using CBREAK mode and making C-g cause SIGINT. | |
60 The choice is controlled by the variable interrupt_input. | |
61 Define INTERRUPT_INPUT to make interrupt_input = 1 the default (use SIGIO) | |
62 | |
63 SIGIO can be used only on systems that implement it (4.2 and 4.3). | |
14036 | 64 CBREAK mode has two disadvantages |
5503 | 65 1) At least in 4.2, it is impossible to handle the Meta key properly. |
66 I hear that in system V this problem does not exist. | |
67 2) Control-G causes output to be discarded. | |
68 I do not know whether this can be fixed in system V. | |
69 | |
70 Another method of doing input is planned but not implemented. | |
71 It would have Emacs fork off a separate process | |
72 to read the input and send it to the true Emacs process | |
73 through a pipe. | |
74 */ | |
75 | |
76 /* #define INTERRUPT_INPUT */ | |
77 | |
78 /* Letter to use in finding device name of first pty, | |
79 if system supports pty's. 'a' means it is /dev/ptya0 */ | |
80 | |
81 /* #define FIRST_PTY_LETTER 'a' */ | |
82 | |
83 /* | |
84 * Define HAVE_PTYS if the system supports pty devices. | |
85 */ | |
86 | |
87 /* #define HAVE_PTYS */ | |
88 | |
89 /* | |
90 * Define NONSYSTEM_DIR_LIBRARY to make Emacs emulate | |
91 * The 4.2 opendir, etc., library functions. | |
92 */ | |
93 | |
94 /* #define NONSYSTEM_DIR_LIBRARY */ | |
95 | |
96 #define SYSV_SYSTEM_DIR | |
97 | |
98 /* Define this symbol if your system has the functions bcopy, etc. */ | |
99 | |
100 #define BSTRING | |
101 | |
8250
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
102 /* Define this is the compiler understands `volatile'. */ |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
103 #define HAVE_VOLATILE |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
104 |
9198d6e1f11c
(HAVE_VOLATILE): Define.
Richard M. Stallman <rms@gnu.org>
parents:
8199
diff
changeset
|
105 |
5503 | 106 /* subprocesses should be defined if you want to |
107 have code for asynchronous subprocesses | |
108 (as used in M-x compile and M-x shell). | |
109 This is generally OS dependent, and not supported | |
110 under most USG systems. */ | |
111 | |
112 #undef subprocesses | |
113 | |
114 /* If your system uses COFF (Common Object File Format) then define the | |
115 preprocessor symbol "COFF". */ | |
116 | |
117 #define COFF | |
118 | |
119 /* define MAIL_USE_FLOCK if the mailer uses flock | |
120 to interlock access to /usr/spool/mail/$USER. | |
121 The alternative is that a lock file named | |
122 /usr/spool/mail/$USER.lock. */ | |
123 | |
124 /* #define MAIL_USE_FLOCK */ | |
125 | |
126 /* Define CLASH_DETECTION if you want lock files to be written | |
127 so that Emacs can tell instantly when you try to modify | |
128 a file that someone else has modified in his Emacs. */ | |
129 | |
130 /* #define CLASH_DETECTION */ | |
131 | |
132 /* Here, on a separate page, add any special hacks needed | |
133 to make Emacs work on this system. For example, | |
134 you might define certain system call names that don't | |
135 exist on your system, or that do different things on | |
136 your system and must be used only through an encapsulation | |
137 (Which you should place, by convention, in sysdep.c). */ | |
138 | |
15172
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
139 /* Avoid incompatibilities between gmalloc.c and system header files |
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
140 in how to declare valloc. */ |
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
141 #define GMALLOC_INHIBIT_VALLOC |
4745198895b6
(GMALLOC_INHIBIT_VALLOC): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
15003
diff
changeset
|
142 |
5503 | 143 /* setjmp and longjmp can safely replace _setjmp and _longjmp, |
144 but they will run slower. */ | |
145 | |
146 #define _setjmp setjmp | |
147 #define _longjmp longjmp | |
148 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
149 #if __DJGPP__ < 2 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
150 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
151 /* New chdir () routine. |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
152 DJGPP v2.0 and later doesn't need it because its chdir() does |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
153 set the drive itself. */ |
5503 | 154 #ifdef chdir |
155 #undef chdir | |
156 #endif | |
157 #define chdir sys_chdir | |
158 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
159 #define LIBS_SYSTEM -lpc /* isn't required in DJGPP v2.0, either */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
160 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
161 #endif /* __DJGPP__ < 2 */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
162 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
163 #if __DJGPP__ > 1 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
164 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
165 #define DATA_START (&etext + 1) |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
166 #define TEXT_START &start |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
167 #define TEXT_END &etext |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
168 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
169 #define _NAIVE_DOS_REGS |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
170 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
171 #else /* not __DJGPP__ > 1 */ |
5503 | 172 |
173 /* This somehow needs to be defined even though we use COFF. */ | |
174 #define TEXT_START -1 | |
175 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
176 #endif /* not __DJGPP__ > 1 */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
177 |
5503 | 178 #define ORDINARY_LINK |
179 | |
9572 | 180 /* command.com does not understand `...` so we define this. */ |
5503 | 181 #define LIB_GCC -Lgcc |
182 #define SEPCHAR ';' | |
183 | |
184 #define NULL_DEVICE "nul" | |
185 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
186 #if __DJGPP__ < 2 |
5503 | 187 #define O_RDONLY 0x0001 |
188 #define O_WRONLY 0x0002 | |
189 #define O_RDWR 0x0004 | |
190 #define O_CREAT 0x0100 | |
191 #define O_TRUNC 0x0200 | |
192 #define O_EXCL 0x0400 | |
193 #define O_APPEND 0x0800 | |
194 #define O_TEXT 0x4000 | |
195 #define O_BINARY 0x8000 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
196 #define NO_MATHERR |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
197 #endif |
5503 | 198 |
199 #define HAVE_INVERSE_HYPERBOLIC | |
200 #define FLOAT_CHECK_DOMAIN | |
201 | |
202 /* When $TERM is "internal" then this is substituted: */ | |
96363
f9d35151b907
American English spelling fix.
Glenn Morris <rgm@gnu.org>
parents:
96303
diff
changeset
|
203 #define INTERNAL_TERMINAL "pc|bios|IBM PC with color display:\ |
26730
d19a69fd704a
(INTERNAL_TERMINAL): Add entries for color support.
Eli Zaretskii <eliz@gnu.org>
parents:
17453
diff
changeset
|
204 :co#80:li#25:Co#16:pa#256:km:ms:cm=<CM>:cl=<CL>:ce=<CE>:\ |
27638
4b7038d296bb
Add capabilities se, so, us, ue, md, mh, mb, mr, and me to the fake
Eli Zaretskii <eliz@gnu.org>
parents:
27593
diff
changeset
|
205 :se=</SO>:so=<SO>:us=<UL>:ue=</UL>:md=<BD>:mh=<DIM>:mb=<BL>:mr=<RV>:me=<NV>:\ |
26730
d19a69fd704a
(INTERNAL_TERMINAL): Add entries for color support.
Eli Zaretskii <eliz@gnu.org>
parents:
17453
diff
changeset
|
206 :AB=<BG %d>:AF=<FG %d>:op=<DefC>:" |
5503 | 207 |
208 /* Define this to a function (Fdowncase, Fupcase) if your file system | |
209 likes that */ | |
15220
069fc3f2c2b4
(FILE_SYSTEM_CASE): Call Fmsdos_downcase_filename instead of Fdowncase.
Richard M. Stallman <rms@gnu.org>
parents:
15172
diff
changeset
|
210 #define FILE_SYSTEM_CASE Fmsdos_downcase_filename |
5503 | 211 |
10500
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
212 /* Define this to be the separator between devices and paths */ |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
213 #define DEVICE_SEP ':' |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
214 |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
215 /* We'll support either convention on MSDOG. */ |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
216 #define IS_DIRECTORY_SEP(_c_) ((_c_) == '/' || (_c_) == '\\') |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
217 #define IS_ANY_SEP(_c_) (IS_DIRECTORY_SEP (_c_) || IS_DEVICE_SEP (_c_)) |
4d77d5230bff
(DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP): Defined.
Richard M. Stallman <rms@gnu.org>
parents:
9798
diff
changeset
|
218 |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
219 /* Call init_gettimeofday when TZ changes. */ |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
220 #if __DJGPP__ < 2 |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
221 #define LOCALTIME_CACHE |
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
222 #define tzset init_gettimeofday |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
223 #endif |
13041
140467bd68ba
(LOCALTIME_CACHE, tzset): New macros.
Paul Eggert <eggert@twinsun.com>
parents:
12345
diff
changeset
|
224 |
6382 | 225 /* bcopy under djgpp is quite safe */ |
226 #define GAP_USE_BCOPY | |
227 #define BCOPY_UPWARD_SAFE 1 | |
228 #define BCOPY_DOWNWARD_SAFE 1 | |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
229 |
8796 | 230 /* Mode line description of a buffer's type. */ |
231 #define MODE_LINE_BINARY_TEXT(buf) (NILP(buf->buffer_file_type) ? "T" : "B") | |
232 | |
14970
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
233 /* Do we have POSIX signals? */ |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
234 #if __DJGPP__ > 1 |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
235 #define POSIX_SIGNALS |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
236 #endif |
78a622f19f7f
(DATA_START, TEXT_START, TEXT_END, _NAIVE_DOS_REGS)
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
237 |
8199
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
238 /* We have (the code to control) a mouse. */ |
04a19fb09fb3
(HAVE_MOUSE, PURESIZE): Definitions moved here.
Richard M. Stallman <rms@gnu.org>
parents:
7668
diff
changeset
|
239 #define HAVE_MOUSE |
9572 | 240 |
13849 | 241 /* We canuse mouse menus. */ |
242 #define HAVE_MENUS | |
243 | |
9572 | 244 /* We have support for faces. */ |
245 #define HAVE_FACES | |
246 | |
247 /* Define one of these for easier conditionals. */ | |
248 #ifdef HAVE_X_WINDOWS | |
249 /* We need a little extra space, see ../../lisp/loadup.el */ | |
250 #define SYSTEM_PURESIZE_EXTRA 15000 | |
251 #define LIBX11_SYSTEM -lxext -lsys | |
252 #else | |
253 /* We need a little extra space, see ../../lisp/loadup.el */ | |
44631
edee6e4af0f2
(SYSTEM_PURESIZE_EXTRA): Reduce to 50000.
Eli Zaretskii <eliz@gnu.org>
parents:
39935
diff
changeset
|
254 #define SYSTEM_PURESIZE_EXTRA 50000 |
9572 | 255 #endif |
28364 | 256 |
35553 | 257 /* Tell the garbage collector that setjmp is known to save all |
28364 | 258 registers relevant for conservative garbage collection in the |
259 jmp_buf. */ | |
260 | |
261 #define GC_SETJMP_WORKS 1 | |
35451
a600f3477e8f
(GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS.
Eli Zaretskii <eliz@gnu.org>
parents:
28364
diff
changeset
|
262 #define GC_MARK_STACK GC_MAKE_GCPROS_NOOPS |
52401 | 263 |
264 /* arch-tag: d184f860-815d-4ff4-8187-d05c0f3c37d0 | |
265 (do not change this comment) */ |