Added SEE ALSO reference to ftm.7

This commit is contained in:
Michael Kerrisk 2006-04-21 06:49:34 +00:00
parent 55b726d1a1
commit 50e5322c85
19 changed files with 147 additions and 20 deletions

108
Changes
View File

@ -8,6 +8,13 @@ Contributors
The following people contributed notes, ideas, or patches that have
been incorporated in changes in this release:
Justin Pryzby <justinpryzby@users.sourceforge.net>
Karel Kulhavy <clock@twibright.com>
Mark Glines <mark@glines.org>
Martin (Joey) Schulze <joey@infodrom.org>
Nishanth Aravamudan <nacc@us.ibm.com>
Reuben Thomas <rrt@sc3d.org>
Ryan S. Arnold <rsa@us.ibm.com>
Apologies if I missed anyone!
@ -15,6 +22,33 @@ Apologies if I missed anyone!
Global changes
--------------
The following pages have been relocated into section 7, since
that is their more natural home. SEE ALSO references in various
other pages have been adjusted.
epoll.4
fifo.4
futex.4
complex.5
environ.5 (many pages outside man-pages actually *expect*
'environ' to be in Section 7.)
ipc.5 renamed to svipc.7
".so" link files have been created to link the old file locations to the
new file locations. These links are added just to ensure that cross
references from any other (non-man-pages) pages will remain valid;
eventually these links will be removed.
getgroups.2
wait4.2
chown.2
chdir.2
gettimeofday.2
initgroups.3
dirfd.3
mtk
Simplified wording around requirement for _BSD_SOURCE
feature test macro.
New pages
---------
@ -23,3 +57,77 @@ New pages
Changes to individual pages
---------------------------
accept.2
Mark Glines
Remove mention of SOCK_RDM from this page, since this socket
type does not support accept()ing connections.
gettimeofday.2
Karel Kulhavy
Point out more explicitly that 'tz' argument should
normally be NULL.
mtk
Various other minor edits and formatting fixes.
select.2
Karel Kulhavy
Note more clearly that fd_set arguments can be NULL.
mtk
Various other minor edits and formatting fixes.
semget.2
mtk / Nishanth Aravamudan
Add text to noting that the initial values of semaphores
in a new set is indeterminate.
shmget.2
mtk / Nishanth Aravamudan
Add text noting that contents of newly created segment are zero
values.
stat.2
Nishanth Aravamudan / mtk
Added NOTE that st_size is always returned as zero for most
/proc files.
ctanh.3
Martin (Joey) Schulze / mtk
Fix errors in DESCRIPTION
fmemopen.3
mtk / Ryan S. Arnold
Add text noting that explicitly controlling output buffering
may be useful to catch errors on output operations on an
fmemopen() stream.
strtod.3
strtoul.3
mtk
Describe correct handling or errno in order to
distinguish error from success after the call.
Added EXAMPLE section which points to strtol.3 which provides
an example of the use of the analogous strtol(3).
strtol.3
mtk / Justin Pryzby
Add an example program.
mtk
Describe correct handling or errno in order to
distinguish error from success after the call.
tmpfile.3
Reuben Thomas <rrt@sc3d.org>
DESCRIPTION does not need to say "temporary file name"
just "temporary file", since the name is in any case
unavailable to the user.
See Debian bug 363518
mtk
In DESCRIPTION:
Change /automatically deleted when the program terminates normally/
to /automatically deleted when the program terminates/
since deletion occurs on both normal and abnormal termination.
ip.7
Karel Kulhavy / mtk
Various wording improvements and clarifications.

View File

@ -731,8 +731,8 @@ DN_ATTRIB The attributes of a file were changed
(chown, chmod, utime[s])
.TE
.sp
(In order to obtain these definitions, the _GNU_SOURCE macro must be
defined before including <fcntl.h>.)
(In order to obtain these definitions, the _GNU_SOURCE feature test macro
must be defined.)
.sp
Directory notifications are normally "one-shot", and the application
must re-register to receive further notifications.
@ -934,8 +934,7 @@ F_GETFD, F_SETFD, F_GETFL, F_SETFL, F_GETLK, F_SETLK, F_SETLKW,
F_GETOWN, and F_SETOWN are specified in POSIX.1.
F_GETSIG, F_SETSIG, F_NOTIFY, F_GETLEASE, and F_SETLEASE
are Linux specific.
(Define the _GNU_SOURCE macro before including <fcntl.h> to
obtain these definitions.)
(Define the _GNU_SOURCE macro to obtain these definitions.)
The flags legal for F_GETFL/F_SETFL are those supported by
.BR open (2)
and vary between these systems; O_APPEND, O_NONBLOCK, O_RDONLY,
@ -949,7 +948,8 @@ SVr4 documents additional EIO, ENOLINK and EOVERFLOW error conditions.
.BR open (2),
.BR socket (2),
.BR lockf (3),
.BR capabilities (7)
.BR capabilities (7),
.BR ftm (7)
.P
See also locks.txt, mandatory.txt, and dnotify.txt in
/usr/src/linux/Documentation.

View File

@ -65,4 +65,5 @@ _XOPEN_SOURCE_EXTENDED, or use "#define _XOPEN_SOURCE \fIn\fP"
for some integer \fIn\fP larger than or equal to 500.
.SH "SEE ALSO"
.BR getpgid (2),
.BR setsid (2)
.BR setsid (2),
.BR ftm (7)

View File

@ -202,4 +202,5 @@ Version 7, the ancestral Unix from Bell Labs.
.I /usr/include/linux/unistd.h
.SH "SEE ALSO"
.BR syscall (2),
.BR errno (3)
.BR errno (3),
.BR ftm (7)

View File

@ -556,4 +556,5 @@ corresponding to the flags \fBO_SYNC\fR, \fBO_DSYNC\fR and
.BR unlink (2),
.BR write (2),
.BR fopen (3),
.BR fifo (7)
.BR fifo (7),
.BR ftm (7)

View File

@ -284,4 +284,5 @@ with the value \-1 for use as a
This constant is not provided in glibc.
.SH "SEE ALSO"
.BR select (2),
.BR select_tut (2)
.BR select_tut (2),
.BR ftm (7)

View File

@ -471,4 +471,5 @@ For vaguely related stuff, see
.BR recv (2),
.BR send (2),
.BR sigprocmask (2),
.BR write (2)
.BR write (2),
.BR ftm (7)

View File

@ -189,4 +189,5 @@ for some integer \fIn\fP larger than or equal to 500.
.BR setsid (2),
.BR tcgetpgrp (3),
.BR tcsetpgrp (3),
.BR termios (3)
.BR termios (3),
.BR ftm (7)

View File

@ -295,4 +295,5 @@ ANSI C
.BR raise (3),
.BR sigsetops (3),
.BR sigvec (3),
.BR ftm (7),
.BR signal (7)

View File

@ -142,4 +142,5 @@ are GNU extensions.
.BR cbc_crypt (3),
.BR crypt (3),
.BR ecb_crypt (3),
.BR fcrypt (3)
.BR fcrypt (3),
.BR ftm (7)

View File

@ -84,4 +84,5 @@ The
function occurs in 4.3BSD.
.\" see IEEE.3 in the 4.3BSD manual
.SH "SEE ALSO"
.BR fpclassify (3)
.BR fpclassify (3),
.BR ftm (7)

View File

@ -170,4 +170,5 @@ POSIX.1
.BR open (2),
.BR unlink (2),
.BR free (3),
.BR malloc (3)
.BR malloc (3),
.BR ftm (7)

View File

@ -170,4 +170,5 @@ ISO 9899, POSIX 1003.1-2001
.BR localtime (3),
.BR strftime (3),
.BR strptime (3),
.BR time (3)
.BR time (3),
.BR ftm (7)

View File

@ -55,3 +55,6 @@ specify the library names.
.SH AUTHORS
Look at the header of the manual page for the author(s) and copyright
conditions. Note that these can be different from page to page!
.SH "SEE ALSO"
.BR errno (3),
.BR ftm (7)

View File

@ -187,4 +187,5 @@ _XOPEN_SOURCE is defined to a value not less than 500).
.BR brk (2),
.BR getpagesize (2),
.BR free (3),
.BR malloc (3)
.BR malloc (3),
.BR ftm (7)

View File

@ -90,7 +90,7 @@ The values that may be assigned to these fields are described below.
In the case of the first four bit-mask fields,
the definitions of some of the associated flags that may be set are
only exposed if a specific feature test macro (see
.IR <features.h> )
.BR ftm (7))
is defined, as noted in brackets ("[]").
.PP
\fIc_iflag\fP flag constants:
@ -663,4 +663,5 @@ behaves like
.\" glibc for sunos4: ignore duration
.SH "SEE ALSO"
.BR stty (1),
.BR ftm (7),
.BR setserial (8)

View File

@ -106,4 +106,5 @@ instead.
.BR nanosleep (2),
.BR select (2),
.BR setitimer (2),
.BR usleep (3)
.BR usleep (3),
.BR ftm (7)

View File

@ -91,4 +91,5 @@ variants occur on a few Unix systems, and are available in recent glibc.
.\" ungetc_unlocked, ungetwc_unlocked.
They should probably not be used.
.SH "SEE ALSO"
.BR flockfile (3)
.BR flockfile (3),
.BR ftm (7)

View File

@ -116,4 +116,5 @@ instead.
.BR nanosleep (2),
.BR select (2),
.BR setitimer (2),
.BR sleep (3)
.BR sleep (3),
.BR ftm (7)