annotate src/s/netbsd.h @ 31383:860d7ac182e3

(vc-rcs-show-log-entry): New function. (vc-rcs-checkin, vc-rcs-checkout): Don't set all properties. (vc-rcs-register): If there is no RCS subdir, ask the user whether to create one. (vc-rcs-state-heuristic): Use file-ownership-preserved-p. (vc-rcs-checkout): Remove the error-handling for missing-rcs. (vc-rcs-state-heuristic): Don't use file-writable-p. (vc-rcs-print-log): Insert in the current buffer. (vc-rcs-diff): Insert in the current buffer and remove unused arg CMP. (vc-rcs-workfile-unchanged-p): Use vc-do-command instead of vc-simple-command. (vc-rcs-fetch-master-state): Removed check for unlocked-changes to avoid doing a diff when opening a file. (vc-rcs-state): Added check for unlocked-changes. (vc-rcs-header): Escape Id. (vc-rcs-workfile-unchanged-p): Remove optional arg VERSION. (vc-rcs-state): Call vc-workfile-unchanged-p, not the RCS-specific version. (vc-rcs-state-heuristic): Use file-writable-p instead of comparing userids. (vc-rcs-fetch-master-state): Handle the case where rcs is missing. Simplify the logic by eliminating unreachable code. (vc-rcs-diff): Only pass `2' to vc-do-command if necessary and just do a recursive call if we need to retry. (vc-rcs-checkout): Handle the case where rcs is missing by making the buffer read-write if requested and re-signalling the error. (vc-rcs-find-most-recent-rev): New function. The code derives from the old vc-parse-buffer but uses the revision number rather than the date (much easier to compare robustly). (vc-rcs-fetch-master-state): Use `with-temp-buffer'. Adapt to the new vc-parse-buffer (and vc-rcs-find-most-recent-rev). Find the locking-user more directly. Check strict locking and set checkout-model appropriately. (vc-rcs-parse-locks): Remove. (vc-rcs-latest-on-branch-p): Use with-temp-buffer and adapt to the new vc-parse-buffer (and vc-rcs-find-most-recent-rev). (vc-rcs-system-release): Use with-current-buffer and vc-parse-buffer. (vc-rcs-register, vc-rcs-checkout): Use with-current-buffer. Merge in code from vc-rcs-hooks.el. Don't require 'vc anymore. (vc-rcs-responsible-p): Use expand-file-name instead of concat and file-directory-p instead of file-exists-p. (vc-rcs-exists): Remove. (vc-rcs-header): New var. Update Copyright. (vc-rcs-rename-file): New function. (vc-rcs-diff): Remove unused `backend' variable. (vc-rcs-clear-headers): New function; code moved here from vc-clear-headers in vc.el. (tail): Provide vc-rcs and remove vc-rcs-logentry-check. (vc-rcs-register): Parse command output to find master file name and workfile version. (vc-rcs-checkout): Removed call to vc-file-clear-masterprops. Require vc and vc-rcs-hooks. (vc-rcs-trunk-p, vc-rcs-branch-part): Move to vc-rcs-hooks. (vc-rcs-backend-release-p): Remove (use vc-rcs-release-p). (vc-release-greater-or-equal-p): Move from vc. (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part, vc-rcs-previous-version): Remove duplicates. (vc-rcs-checkout): Add a missing `new-version' argument in the call to vc-rcs-latest-on-branch-p. Hopefully that was the right one. (vc-rcs-steal-lock): Renamed from `vc-rcs-steal'. Updated everything to use `vc-checkout-model'. (vc-rcs-backend-release-p): function added. other stuff updated to reference this function instead of the old `vc-backend-release-p'. (vc-rcs-logentry-check): Function added. (vc-rcs-checkin, vc-rcs-previous-version) (vc-rcs-checkout): Name space cleaned up. No more revision number crunching function names that are not prefixed with vc-rcs. (vc-rcs-checkout-model): Function added. References to `vc-checkout-model' replaced. (vc-rcs-admin): Added the query-only option as required by the vc.el file. (vc-rcs-exists): Function added. (vc-*-checkout): Use with-temp-file instead of /bin/sh. Merged from mainline (vc-rcs-latest-on-branch-p): Moved to vc-rcs-hooks.el. (vc-rcs-latest-on-branch-p, vc-rcs-trunk-p) (vc-rcs-branch-p, vc-rcs-branch-part, vc-rcs-minor-part) (vc-rcs-previous-version): Functions added. (vc-rcs-diff): Function added. (vc-rcs-checkout) Bug (typo) found and fixed. (vc-rcs-register-switches) Variable `vc-rcs-register-switches' added. Require vc when compiling. (vc-rcs-print-log, vc-rcs-assign-name, vc-rcs-merge) (vc-rcs-check-headers, vc-rcs-steal, vc-rcs-uncheck, vc-rcs-revert) (vc-rcs-checkin): New functions (code from vc.el). (vc-rcs-previous-version, vc-rcs-system-release, vc-rcs-checkout): Doc fix. (vc-rcs-release): Deleted. (Duplicated vc-rcs-system-release). (vc-rcs-trunk-p, vc-rcs-branch-p, vc-rcs-branch-part) (vc-rcs-minor-part, vc-rcs-previous-version, vc-rcs-release) (vc-rcs-release-p, vc-rcs-admin, vc-rcs-checkout): New functions from vc.el. (vc-rcs-system-release): Renamed from vc-rcs-backend-release.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 04 Sep 2000 19:47:43 +0000
parents 9a247156dd7e
children 3935d834ff04
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4690
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
1 /* s/ file for netbsd system. */
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
2
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
3 /* Get most of the stuff from bsd4.3 */
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
4 #include "bsd4-3.h"
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
5
18121
23ee33de4cca (NO_SHARED_LIBS): Test __alpha__ && ! __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18102
diff changeset
6 #if defined (__alpha__) && !defined (__ELF__)
18102
d419ea48f00e [__alpha__] (NO_SHARED_LIBS): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 14618
diff changeset
7 #define NO_SHARED_LIBS
d419ea48f00e [__alpha__] (NO_SHARED_LIBS): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 14618
diff changeset
8 #endif
d419ea48f00e [__alpha__] (NO_SHARED_LIBS): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 14618
diff changeset
9
5902
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
10 /* For mem-limits.h. */
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
11 #define BSD4_2
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
12
4690
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
13 #undef KERNEL_FILE
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
14 #undef LDAV_SYMBOL
28640
7f198d98ac14 Revert HAVE_GETLOADAVG changes.
Dave Love <fx@gnu.org>
parents: 28593
diff changeset
15 #define HAVE_GETLOADAVG 1
4690
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
16
6014
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
17 #define HAVE_UNION_WAIT
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
18
4690
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
19 #define SIGNALS_VIA_CHARACTERS
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
20
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
21 #define PENDING_OUTPUT_COUNT(FILE) ((FILE)->_p - (FILE)->_bf._base)
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
22
6014
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
23 /* netbsd uses OXTABS instead of the expected TAB3. */
6861
f8e60e2bd9b3 (TABDLY): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 6401
diff changeset
24 #define TABDLY OXTABS
6014
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
25 #define TAB3 OXTABS
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
26
4690
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
27 #define A_TEXT_OFFSET(x) (sizeof (struct exec))
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
28 #define A_TEXT_SEEK(hdr) (N_TXTOFF(hdr) + A_TEXT_OFFSET(hdr))
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
29
6014
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
30 #define HAVE_TERMIOS
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
31 #define NO_TERMIO
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
32
4690
d14a87abdb46 Initial revision
Roland McGrath <roland@gnu.org>
parents:
diff changeset
33 #define LIBS_DEBUG
5902
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
34 /* -lutil is not needed for NetBSD >0.9. */
11336
00320c2e1753 (NO_MATHERR): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 10714
diff changeset
35 /* #define LIBS_SYSTEM -lutil */
5902
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
36 #define LIBS_TERMCAP -ltermcap
5901
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
37
6014
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
38 #define NEED_ERRNO
5901
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
39 #define SYSV_SYSTEM_DIR
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
40
6014
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
41 /* Netbsd has POSIX-style pgrp behavior. */
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
42 #undef BSD_PGRPS
0d370ebc038a (BSD_PGRPS): Add #undef.
Richard M. Stallman <rms@gnu.org>
parents: 5938
diff changeset
43
11705
29064b5e5398 (GETPGRP_NO_ARG): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 11336
diff changeset
44 #define GETPGRP_NO_ARG
29064b5e5398 (GETPGRP_NO_ARG): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 11336
diff changeset
45
20032
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
46 #if !defined (NO_SHARED_LIBS) && ! defined (__ELF__)
5901
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
47 /* These definitions should work for either dynamic or static linking,
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
48 whichever is the default for `cc -nostdlib'. */
5938
db25cb887e22 (BROKEN_START, TEXT_START): Don't define.
Roland McGrath <roland@gnu.org>
parents: 5919
diff changeset
49 #define HAVE_TEXT_START /* No need to define `start_of_text'. */
5901
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
50 #define START_FILES pre-crt0.o /usr/lib/crt0.o
5902
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
51 #define UNEXEC unexsunos4.o
5901
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
52 #define RUN_TIME_REMAP
5902
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
53
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
54 /* Try to make this work for both 0.9 and >0.9. */
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
55 #ifndef N_TRELOFF
5901
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
56 #define N_PAGSIZ(x) __LDPGSZ
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
57 #define N_BSSADDR(x) (N_ALIGN(x, N_DATADDR(x)+x.a_data))
0377de94724d (SYSV_SYSTEM_DIR): Define.
Roland McGrath <roland@gnu.org>
parents: 5334
diff changeset
58 #define N_TRELOFF(x) N_RELOFF(x)
5902
916cd5156aed Use -ltermcap, not Emacs's own version. #undef symbols used for
Charles Hannum <mycroft@gnu.org>
parents: 5901
diff changeset
59 #endif
26163
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
60 #endif /* not NO_SHARED_LIBS and not ELF */
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
61
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
62 #if !defined (NO_SHARED_LIBS) && defined (__ELF__)
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
63 #define START_FILES pre-crt0.o /usr/lib/crt0.o /usr/lib/crtbegin.o
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
64 #define UNEXEC unexelf.o
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
65 #define LIB_STANDARD -lgcc -lc -lgcc /usr/lib/crtend.o
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
66 #undef LIB_GCC
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
67 #define LIB_GCC
99c35bcce8c0 netbsd-elf fixes
Ken Raeburn <raeburn@raeburn.org>
parents: 25032
diff changeset
68 #endif
6368
f18c8a4f7125 (LOCALTIME_CACHE): Define this symbol.
Karl Heuer <kwzh@gnu.org>
parents: 6014
diff changeset
69
6388
c82a7e9ae93b (LD_SWITCH_SYSTEM, HAVE_WAIT_HEADER): Define these.
Karl Heuer <kwzh@gnu.org>
parents: 6368
diff changeset
70 #define HAVE_WAIT_HEADER
10714
a383e6129216 (WAIT_USE_INT): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 8916
diff changeset
71 #define WAIT_USE_INT
11336
00320c2e1753 (NO_MATHERR): Defined.
Richard M. Stallman <rms@gnu.org>
parents: 10714
diff changeset
72
12534
3f869873946a (AMPERSAND_FULL_NAME): Defined.
Karl Heuer <kwzh@gnu.org>
parents: 11705
diff changeset
73 #define AMPERSAND_FULL_NAME
20032
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
74
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
75 #ifdef __ELF__
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
76 /* Here is how to find X Windows. LD_SWITCH_X_SITE_AUX gives an -R option
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
77 says where to find X windows at run time. We convert it to a -rpath option
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
78 which is what OSF1 uses. */
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
79 #define LD_SWITCH_SYSTEM `echo LD_SWITCH_X_SITE_AUX | sed -e 's/-R/-Wl,-rpath,/'`
8b3f96c4cad1 (LD_SWITCH_SYSTEM): Use -Wl,-rpath if __ELF__.
Richard M. Stallman <rms@gnu.org>
parents: 18121
diff changeset
80 #endif /* __ELF__ */
21475
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
81
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
82 /* On post 1.3 releases of NetBSD, gcc -nostdlib also clears
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
83 the library search parth, i.e. it won't search /usr/lib
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
84 for libc and friends. Using -nostartfiles instead avoids
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
85 this problem, and will also work on earlier NetBSD releases */
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
86
6cc3bb84b60e (LINKER): Add definition.
Karl Heuer <kwzh@gnu.org>
parents: 20032
diff changeset
87 #define LINKER $(CC) -nostartfiles
25032
ae314c884db0 (NARROWPROTO): New.
Gerd Moellmann <gerd@gnu.org>
parents: 21475
diff changeset
88
ae314c884db0 (NARROWPROTO): New.
Gerd Moellmann <gerd@gnu.org>
parents: 21475
diff changeset
89 #define NARROWPROTO 1
30079
1572612184fc Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents: 29430
diff changeset
90
1572612184fc Sound support for NetBSD through "Linux emulation" support:
Ken Raeburn <raeburn@raeburn.org>
parents: 29430
diff changeset
91 #define DEFAULT_SOUND_DEVICE "/dev/audio"
31332
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
92
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
93 /* Greg A. Woods <woods@weird.com> says we must include signal.h
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
94 before syssignal.h is included, to work around interface conflicts
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
95 that are handled with CPP __RENAME() macro in signal.h. */
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
96
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
97 #ifndef NO_C_SOURCE
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
98 #include <signal.h>
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
99 #endif
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
100
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
101 /* Don't close pty in process.c to make it as controlling terminal.
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
102 It is already a controlling terminal of subprocess, because we did
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
103 ioctl TIOCSCTTY. */
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
104
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
105 #define DONT_REOPEN_PTY
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
106
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
107 /* Tell that garbage collector that setjmp is known to save all
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
108 registers relevant for conservative garbage collection in the
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
109 jmp_buf. */
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
110
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
111 #define GC_SETJMP_WORKS 1
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
112
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
113 /* Use the GC_MAKE_GCPROS_NOOPS (see lisp.h) method. */
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
114
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
115 #define GC_MARK_STACK 1
9a247156dd7e Include <signal.h>.
Gerd Moellmann <gerd@gnu.org>
parents: 30079
diff changeset
116