Mercurial > emacs
annotate src/s/usg5-4-common.h @ 112154:3e52c52bbc1a
* lib-src/Makefile.in (EMACSOPT): Remove --multibyte, it does nothing any more.
author | Glenn Morris <rgm@gnu.org> |
---|---|
date | Fri, 07 Jan 2011 18:34:26 -0800 |
parents | a8b56c7dbb62 |
children | 417b1e4d63cd |
rev | line source |
---|---|
456 | 1 /* Definitions file for GNU Emacs running on AT&T's System V Release 4 |
108310
17d73312ed65
Move TERMINFO, LIBS_TERMCAP from cpp to configure.
Glenn Morris <rgm@gnu.org>
parents:
108274
diff
changeset
|
2 |
17d73312ed65
Move TERMINFO, LIBS_TERMCAP from cpp to configure.
Glenn Morris <rgm@gnu.org>
parents:
108274
diff
changeset
|
3 Copyright (C) 1987, 1990, 1999, 2000, 2001, 2002, 2003, 2004, 2005, |
17d73312ed65
Move TERMINFO, LIBS_TERMCAP from cpp to configure.
Glenn Morris <rgm@gnu.org>
parents:
108274
diff
changeset
|
4 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
456 | 5 |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
6 Written by James Van Artsdalen of Dell Computer Corp. james@bigtex.cactus.org. |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
7 Subsequently improved for Dell 2.2 by Eric S. Raymond <esr@snark.thyrsus.com>. |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
8 |
456 | 9 This file is part of GNU Emacs. |
10 | |
94715
1f134b61867c
Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents:
87649
diff
changeset
|
11 GNU Emacs is free software: you can redistribute it and/or modify |
1039 | 12 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:
87649
diff
changeset
|
13 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:
87649
diff
changeset
|
14 (at your option) any later version. |
456 | 15 |
1039 | 16 GNU Emacs is distributed in the hope that it will be useful, |
17 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
18 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
19 GNU General Public License for more details. | |
20 | |
21 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:
87649
diff
changeset
|
22 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */ |
456 | 23 |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
24 /* Use the SysVr3 file for at least base configuration. */ |
96303 | 25 #define USG /* System III, System V, etc */ |
456 | 26 |
96303 | 27 #define USG5 |
456 | 28 #define USG5_4 |
29 | |
96303 | 30 /* SYSTEM_TYPE should indicate the kind of system you are using. |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
31 It sets the Lisp variable system-type. */ |
96303 | 32 #define SYSTEM_TYPE "usg-unix-v" |
33 | |
34 /* The file containing the kernel's symbol table is called /unix. */ | |
35 #define KERNEL_FILE "/unix" | |
36 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
37 /* The kernel symbol where the load average is found is named avenrun. */ |
96303 | 38 #define LDAV_SYMBOL "avenrun" |
39 | |
40 /* setjmp and longjmp can safely replace _setjmp and _longjmp, | |
41 but they will run slower. */ | |
42 #define _setjmp setjmp | |
43 #define _longjmp longjmp | |
4336
96d3869ae231
(bzero, bcmp, bcopy): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
4295
diff
changeset
|
44 |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
45 /* The docs for system V/386 suggest v.3 has sigpause, so let's try it. */ |
96303 | 46 #define HAVE_SYSV_SIGPAUSE |
47 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
48 /* On USG systems signal handlers return void. */ |
96303 | 49 #define SIGTYPE void |
50 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
51 /* Get FIONREAD from <sys/filio.h>. Get <sys/ttold.h> to get struct tchars. |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
52 But get <termio.h> first to make sure ttold.h doesn't interfere. |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
53 And don't try to use SIGIO yet. */ |
13466
e31afd8b6355
Always include sys/wait.h unless NOT_C_CODE;
Richard M. Stallman <rms@gnu.org>
parents:
12734
diff
changeset
|
54 #include <sys/wait.h> |
e31afd8b6355
Always include sys/wait.h unless NOT_C_CODE;
Richard M. Stallman <rms@gnu.org>
parents:
12734
diff
changeset
|
55 |
456 | 56 #ifdef emacs |
57 #include <sys/filio.h> | |
58 #include <termio.h> | |
59 #include <sys/ttold.h> | |
60 #include <signal.h> | |
1039 | 61 #include <sys/stream.h> |
62 #include <sys/stropts.h> | |
63 #include <sys/termios.h> | |
26090 | 64 #define BROKEN_SIGIO |
456 | 65 #endif |
66 | |
2116
76df2de3dd55
* s/usg5-4.h: Changes from Eric Raymond:
Jim Blandy <jimb@redhat.com>
parents:
1868
diff
changeset
|
67 /* Some SVr4s don't define NSIG in sys/signal.h for ANSI environments; |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
68 instead, there's a system variable _sys_nsig. Unfortunately, we need the |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
69 constant to dimension an array. So wire in the appropriate value here. */ |
26090 | 70 #define NSIG_MINIMUM 32 |
2116
76df2de3dd55
* s/usg5-4.h: Changes from Eric Raymond:
Jim Blandy <jimb@redhat.com>
parents:
1868
diff
changeset
|
71 |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
72 /* We can support this. */ |
456 | 73 #define CLASH_DETECTION |
74 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
75 /* Define HAVE_PTYS if the system supports pty devices. */ |
456 | 76 #define HAVE_PTYS |
77 | |
78 /* It is possible to receive SIGCHLD when there are no children | |
79 waiting, because a previous waitsys(2) cleaned up the carcass of child | |
80 without clearing the SIGCHLD pending info. So, use a non-blocking | |
81 wait3 instead, which maps to waitpid(2) in SysVr4. */ | |
82 #define wait3(status, options, rusage) \ | |
8283
32427329c42c
(PTY_TTY_NAME_SPRINTF): Fail smoothly if cannot get pty.
Richard M. Stallman <rms@gnu.org>
parents:
7947
diff
changeset
|
83 waitpid ((pid_t) -1, (status), (options)) |
456 | 84 #define WRETCODE(w) (w >> 8) |
85 | |
86 /* TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY | |
87 subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and | |
88 this is all we need. */ | |
89 #define TIOCSIGSEND TIOCSIGNAL | |
90 | |
91 /* This change means that we don't loop through allocate_pty too many | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
92 times in the (rare) event of a failure. */ |
456 | 93 #define FIRST_PTY_LETTER 'z' |
94 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
95 /* This sets the name of the master side of the PTY. */ |
456 | 96 #define PTY_NAME_SPRINTF strcpy (pty_name, "/dev/ptmx"); |
97 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
98 /* Push various streams modules onto a PTY channel. */ |
456 | 99 #define SETUP_SLAVE_PTY \ |
100 if (ioctl (xforkin, I_PUSH, "ptem") == -1) \ | |
101 fatal ("ioctl I_PUSH ptem", errno); \ | |
102 if (ioctl (xforkin, I_PUSH, "ldterm") == -1) \ | |
103 fatal ("ioctl I_PUSH ldterm", errno); \ | |
104 if (ioctl (xforkin, I_PUSH, "ttcompat") == -1) \ | |
105 fatal ("ioctl I_PUSH ttcompat", errno); | |
106 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
107 /* This definition was suggested for next release. So give it a try. */ |
1039 | 108 #define HAVE_SOCKETS |
4336
96d3869ae231
(bzero, bcmp, bcopy): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
4295
diff
changeset
|
109 |
52401 | 110 /* arch-tag: 1a0ed909-5faa-434b-b7c3-9d86c63d53a6 |
111 (do not change this comment) */ |