annotate doc/glibc-headers/pty.texi @ 19242:11af6bbd6df5

doc: Update for Solaris 11.3. * doc/**/*.texi: For bugs that exist in both Solaris 11.0 and 11.3, mention Solaris 11.3. * m4/log2.m4: Fix comments. * m4/log2f.m4: Likewise. * m4/printf.m4: Update comments. * m4/rename.m4: Likewise. * m4/strncat.m4: Likewise.
author Bruno Haible <bruno@clisp.org>
date Thu, 12 Oct 2017 23:18:12 +0200
parents fc8be28143d4
children d4661c7ea0d0
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
9611
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 @node pty.h
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 @section @file{pty.h}
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Declares the functions @code{openpty} and @code{forkpty}.
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 Documentation:
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7 @itemize
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 @item
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 @ifinfo
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
10 @ref{Pseudo-Terminal Pairs,,Opening a Pseudo-Terminal Pair,libc},
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11 @end ifinfo
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 @ifnotinfo
19189
dbc5895964f0 doc: Prefer https URLs where possible.
Bruno Haible <bruno@clisp.org>
parents: 18977
diff changeset
13 @url{https://www.gnu.org/software/libc/manual/html_node/Pseudo_002dTerminal-Pairs.html},
9611
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
14 @end ifnotinfo
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
15 @item
19192
d86e08b1f555 all: Replace many more http URLs by https URLs. Update stale URLs.
Bruno Haible <bruno@clisp.org>
parents: 19189
diff changeset
16 @uref{https://www.kernel.org/doc/man-pages/online/pages/man3/openpty.3.html,,man openpty}.
9611
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 @end itemize
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
12419
c043358e3949 Add pty module for forkpty and openpty.
Simon Josefsson <simon@josefsson.org>
parents: 9611
diff changeset
19 Gnulib module: pty
9611
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 Portability problems fixed by Gnulib:
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 @itemize
12419
c043358e3949 Add pty module for forkpty and openpty.
Simon Josefsson <simon@josefsson.org>
parents: 9611
diff changeset
23 @item
c043358e3949 Add pty module for forkpty and openpty.
Simon Josefsson <simon@josefsson.org>
parents: 9611
diff changeset
24 This header file is missing on some platforms that declare the
c043358e3949 Add pty module for forkpty and openpty.
Simon Josefsson <simon@josefsson.org>
parents: 9611
diff changeset
25 @code{forkpty} and @code{openpty} functions in @code{util.h} or
16935
498a2211d839 Write "Mac OS X" instead of "MacOS X".
Bruno Haible <bruno@clisp.org>
parents: 16254
diff changeset
26 @code{libutil.h} instead: Mac OS X 10.5, FreeBSD 6.0, NetBSD 5.0,
12419
c043358e3949 Add pty module for forkpty and openpty.
Simon Josefsson <simon@josefsson.org>
parents: 9611
diff changeset
27 OpenBSD 3.8.
13117
a071b99c37a8 pty: Update doc.
Bruno Haible <bruno@clisp.org>
parents: 12419
diff changeset
28 @item
a071b99c37a8 pty: Update doc.
Bruno Haible <bruno@clisp.org>
parents: 12419
diff changeset
29 This header file is missing on some platforms:
19242
11af6bbd6df5 doc: Update for Solaris 11.3.
Bruno Haible <bruno@clisp.org>
parents: 19241
diff changeset
30 Minix 3.1.8, AIX 5.1, HP-UX 11, IRIX 6.5, Solaris 11.3, BeOS.
9611
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
31 @end itemize
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
32
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
33 Portability problems not fixed by Gnulib:
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
34 @itemize
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
35 @item
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
36 This header file is missing on some platforms:
18977
b8576602c861 doc: Update for MSVC 14.
Bruno Haible <bruno@clisp.org>
parents: 16935
diff changeset
37 mingw, MSVC 14.
9611
44dd0c8a835f Add documentation chapter about the glibc header files.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
38 @end itemize