Mercurial > emacs
annotate src/s/ptx4.h @ 27146:68290f44807a
(struct sound): Renamed from struct sound_file.
(struct sound): Add members `data' and `header_size'.
(enum sound_attr): Add SOUND_DATA.
(current_sound, current_sound_device): Variables renamed from
sound_file and sound_device.
(parse_sound): Parse :data.
(parse_sound): Handle sound data in strings.
(find_sound_type): Function renamed from find_sound_file_type.
(wav_init, au_init): Fail if sound's header_size is smaller than
needed header size.
(wav_play, au_play): Play sounds from string data.
author | Gerd Moellmann <gerd@gnu.org> |
---|---|
date | Tue, 04 Jan 2000 14:44:19 +0000 |
parents | 63fd40a97a75 |
children | 566fd2a966aa |
rev | line source |
---|---|
15845 | 1 /* s/ file for Sequent "ptx 4", which is a modified SVR5.4. */ |
2 | |
15860 | 3 /* Tell usg5-4.h not to include filio.h. */ |
4 #define NO_FILIO_H | |
5 | |
6 #include "usg5-4.h" | |
15845 | 7 |
8 /* Marcus Daniels <marcus@sysc.pdx.edu> says that SIGINFO is defined | |
9 on ptx4 but it is not a signal. Prevent process.c from doing the | |
10 wrong thing. */ | |
26090 | 11 #define BROKEN_SIGINFO |
15845 | 12 |
13 /* Marcus Daniels <marcus@sysc.pdx.edu> says vfork does exist. */ | |
14 #define HAVE_VFORK | |
15 | |
21145
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
16 /* pae@dim.com (Phil Ernhardt) says this correction to |
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
17 the definition in usg5-4.h is needed to prevent |
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
18 all asynchronous subprocesses from exiting right away. */ |
24210
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
19 |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
20 /* James Youngman <jay@gnu.org> found that on "DYNIX/ptx ARNIE 4.0 |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
21 * V4.4.2 i386", the push of the ttcompat module would fail. It seems |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
22 * that PTX 4.4.2 doesn't have that module, so if the push fails we |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
23 * don't kill ourselves. While this version lacks ttcompat, it also |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
24 * has ptem, but the manual page for ptem indicates that it should |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
25 * be pushed onto the slave side before the line discipline module. |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
26 * See also the streampty manual page, if you're curious (and have |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
27 * a ptx system). |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
28 */ |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
29 |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
30 /* rms: I hope that older versions which do have ttcompat |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
31 will not get confused by the code to use ptem. */ |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
32 |
21145
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
33 #undef SETUP_SLAVE_PTY |
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
34 #define SETUP_SLAVE_PTY \ |
24210
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
35 if (ioctl (xforkin, I_PUSH, "ptem") == -1 && errno != EINVAL) \ |
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
36 fatal ("ioctl I_PUSH ptem", errno); \ |
21145
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
37 if (ioctl (xforkin, I_PUSH, "ldterm") == -1) \ |
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
38 fatal ("ioctl I_PUSH ldterm", errno); \ |
24210
4dc06f8c8c33
(SETUP_SLAVE_PTY): Use the ptem module if it exists.
Richard M. Stallman <rms@gnu.org>
parents:
21145
diff
changeset
|
39 if (ioctl (xforkin, I_PUSH, "ttcompat") == -1 && errno != EINVAL) \ |
21145
469c3de61eb1
(SETUP_SLAVE_PTY): New definition.
Richard M. Stallman <rms@gnu.org>
parents:
15860
diff
changeset
|
40 fatal ("ioctl I_PUSH ttcompat", errno); |