Mercurial > emacs
annotate src/s/usg5-4-common.h @ 111570:ffe2002d45c4
merge trunk
author | Kenichi Handa <handa@m17n.org> |
---|---|
date | Wed, 08 Sep 2010 12:55:57 +0900 |
parents | 4504e82595bb |
children | 1fb35da4a097 3226ac2da7f7 a8b56c7dbb62 |
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 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
34 /* Define HAVE_TERMIO if the system provides sysV-style ioctls |
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
35 for terminal control. */ |
96303 | 36 #define HAVE_TERMIO |
456 | 37 |
96303 | 38 /* The file containing the kernel's symbol table is called /unix. */ |
39 #define KERNEL_FILE "/unix" | |
40 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
41 /* The kernel symbol where the load average is found is named avenrun. */ |
96303 | 42 #define LDAV_SYMBOL "avenrun" |
43 | |
44 /* setjmp and longjmp can safely replace _setjmp and _longjmp, | |
45 but they will run slower. */ | |
46 #define _setjmp setjmp | |
47 #define _longjmp longjmp | |
4336
96d3869ae231
(bzero, bcmp, bcopy): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
4295
diff
changeset
|
48 |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
49 /* The docs for system V/386 suggest v.3 has sigpause, so let's try it. */ |
96303 | 50 #define HAVE_SYSV_SIGPAUSE |
51 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
52 /* On USG systems signal handlers return void. */ |
96303 | 53 #define SIGTYPE void |
54 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
55 /* 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
|
56 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
|
57 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
|
58 #include <sys/wait.h> |
e31afd8b6355
Always include sys/wait.h unless NOT_C_CODE;
Richard M. Stallman <rms@gnu.org>
parents:
12734
diff
changeset
|
59 |
456 | 60 #ifdef emacs |
61 #include <sys/filio.h> | |
62 #include <termio.h> | |
63 #include <sys/ttold.h> | |
64 #include <signal.h> | |
1039 | 65 #include <sys/stream.h> |
66 #include <sys/stropts.h> | |
67 #include <sys/termios.h> | |
26090 | 68 #define BROKEN_SIGIO |
456 | 69 #endif |
70 | |
2116
76df2de3dd55
* s/usg5-4.h: Changes from Eric Raymond:
Jim Blandy <jimb@redhat.com>
parents:
1868
diff
changeset
|
71 /* 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
|
72 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
|
73 constant to dimension an array. So wire in the appropriate value here. */ |
26090 | 74 #define NSIG_MINIMUM 32 |
2116
76df2de3dd55
* s/usg5-4.h: Changes from Eric Raymond:
Jim Blandy <jimb@redhat.com>
parents:
1868
diff
changeset
|
75 |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
76 /* We can support this. */ |
456 | 77 #define CLASH_DETECTION |
78 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
79 /* Define HAVE_PTYS if the system supports pty devices. */ |
456 | 80 #define HAVE_PTYS |
2116
76df2de3dd55
* s/usg5-4.h: Changes from Eric Raymond:
Jim Blandy <jimb@redhat.com>
parents:
1868
diff
changeset
|
81 #define HAVE_TERMIOS |
456 | 82 |
83 /* It is possible to receive SIGCHLD when there are no children | |
84 waiting, because a previous waitsys(2) cleaned up the carcass of child | |
85 without clearing the SIGCHLD pending info. So, use a non-blocking | |
86 wait3 instead, which maps to waitpid(2) in SysVr4. */ | |
87 #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
|
88 waitpid ((pid_t) -1, (status), (options)) |
456 | 89 #define WRETCODE(w) (w >> 8) |
90 | |
91 /* TIOCGPGRP is broken in SysVr4, so we can't send signals to PTY | |
92 subprocesses the usual way. But TIOCSIGNAL does work for PTYs, and | |
93 this is all we need. */ | |
94 #define TIOCSIGSEND TIOCSIGNAL | |
95 | |
96 /* 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
|
97 times in the (rare) event of a failure. */ |
456 | 98 #define FIRST_PTY_LETTER 'z' |
99 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
100 /* This sets the name of the master side of the PTY. */ |
456 | 101 #define PTY_NAME_SPRINTF strcpy (pty_name, "/dev/ptmx"); |
102 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
103 /* Push various streams modules onto a PTY channel. */ |
456 | 104 #define SETUP_SLAVE_PTY \ |
105 if (ioctl (xforkin, I_PUSH, "ptem") == -1) \ | |
106 fatal ("ioctl I_PUSH ptem", errno); \ | |
107 if (ioctl (xforkin, I_PUSH, "ldterm") == -1) \ | |
108 fatal ("ioctl I_PUSH ldterm", errno); \ | |
109 if (ioctl (xforkin, I_PUSH, "ttcompat") == -1) \ | |
110 fatal ("ioctl I_PUSH ttcompat", errno); | |
111 | |
108511
f8e62c2bf3e9
Reformat some comments in src/s/*.h.
Glenn Morris <rgm@gnu.org>
parents:
108310
diff
changeset
|
112 /* This definition was suggested for next release. So give it a try. */ |
1039 | 113 #define HAVE_SOCKETS |
4336
96d3869ae231
(bzero, bcmp, bcopy): New macros.
Richard M. Stallman <rms@gnu.org>
parents:
4295
diff
changeset
|
114 |
52401 | 115 /* arch-tag: 1a0ed909-5faa-434b-b7c3-9d86c63d53a6 |
116 (do not change this comment) */ |