diff options
| author | Gerd Moellmann | 2000-03-27 19:42:03 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2000-03-27 19:42:03 +0000 |
| commit | 4b3fd719464fb07dc92ac7584bd7584878e0a8c4 (patch) | |
| tree | 3befee5e46f697420c5fb0de0a26f908e17363e6 /src | |
| parent | c1005d06e8faa630d180fcd16fa2c6db65051e2f (diff) | |
| download | emacs-4b3fd719464fb07dc92ac7584bd7584878e0a8c4.tar.gz emacs-4b3fd719464fb07dc92ac7584bd7584878e0a8c4.zip | |
(GC_SETJMP_WORKS): Define.
Diffstat (limited to 'src')
| -rw-r--r-- | src/s/freebsd.h | 6 | ||||
| -rw-r--r-- | src/s/msdos.h | 6 |
2 files changed, 12 insertions, 0 deletions
diff --git a/src/s/freebsd.h b/src/s/freebsd.h index 59a1e9072e7..15bbe2b6426 100644 --- a/src/s/freebsd.h +++ b/src/s/freebsd.h | |||
| @@ -167,3 +167,9 @@ | |||
| 167 | be seen again in a later read(2), without the CRs. */ | 167 | be seen again in a later read(2), without the CRs. */ |
| 168 | 168 | ||
| 169 | #define BROKEN_PTY_READ_AFTER_EAGAIN 1 | 169 | #define BROKEN_PTY_READ_AFTER_EAGAIN 1 |
| 170 | |||
| 171 | /* Tell that garbage collector that setjmp is known to save all | ||
| 172 | registers relevant for conservative garbage collection in the | ||
| 173 | jmp_buf. */ | ||
| 174 | |||
| 175 | #define GC_SETJMP_WORKS 1 | ||
diff --git a/src/s/msdos.h b/src/s/msdos.h index 164f139949f..71794be5760 100644 --- a/src/s/msdos.h +++ b/src/s/msdos.h | |||
| @@ -269,3 +269,9 @@ You lose; /* Emacs for DOS must be compiled with DJGPP */ | |||
| 269 | /* We need a little extra space, see ../../lisp/loadup.el */ | 269 | /* We need a little extra space, see ../../lisp/loadup.el */ |
| 270 | #define SYSTEM_PURESIZE_EXTRA 60000 | 270 | #define SYSTEM_PURESIZE_EXTRA 60000 |
| 271 | #endif | 271 | #endif |
| 272 | |||
| 273 | /* Tell that garbage collector that setjmp is known to save all | ||
| 274 | registers relevant for conservative garbage collection in the | ||
| 275 | jmp_buf. */ | ||
| 276 | |||
| 277 | #define GC_SETJMP_WORKS 1 | ||