This commit is contained in:
Michael Kerrisk 2008-08-18 14:12:48 +00:00
parent 05230f064f
commit b184d4184f
1 changed files with 44 additions and 12 deletions

56
Changes
View File

@ -11,7 +11,7 @@ been incorporated in changes in this release:
Gerrit Renker <gerrit@erg.abdn.ac.uk>
Sam Varshavchik <mrsam@courier-mta.com>
Venkatesh Srinias <me@acm.jhu.edu>
Venkatesh Srinivas <me@acm.jhu.edu>
Vijay Kumar <vijaykumar@bravegnu.org>
Apologies if I missed anyone!
@ -51,13 +51,29 @@ numa.7
of /proc/PID/numa_maps from proc.5.
Newly documented interfaces in existing pages
---------------------------------------------
New and changed links
---------------------
getnetbyname_r.3
getnetbyaddr_r.3
mtk
New links to new getnetent_r.3.
getprotobyname_r.3
getprotobynumber_r.3
mtk
New links to new getprotoent_r.3.
getrpcbyname_r.3
getrpcbynumber_r.3
mtk
New links to new getrpcent_r.3.
getservbyname_r.3
getservbyport_r.3
mtk
New links to new getservent_r.3.
numa_maps.5
mtk
Link to new numa(7) page, which incorporates the
@ -116,6 +132,10 @@ getnetent.3
changed from 'long' to 'uint32_t'.
mtk
Note that the gethostbyaddr() 'net" argument is in host byte order.
mtk
RETURN VALUE: emphasize that returned pointer points to a
statically allocated structure.
SEE ALSO: add getnetent_r.3.
getprotoent.3
mtk
@ -125,6 +145,22 @@ getprotoent.3
The database connection is held opend between get*() calls if
'stayopen' is non-zero (not necessarily 1).
s/zero terminated list/NULL-terminated list/
mtk
RETURN VALUE: emphasize that returned pointer points to a
statically allocated structure.
SEE ALSO: add getprotoent_r.3.
getrpcent.3
mtk
s/rpc/RPC/.
Rephrase description in terms of a database, rather than a file.
Note that each of the get*() functions opens a connection to
the database if necessary.
s/zero terminated list/NULL-terminated list/
mtk
RETURN VALUE: emphasize that returned pointer points to a
statically allocated structure.
SEE ALSO: add getrpcent_r.3.
getservent.3
mtk
@ -134,14 +170,10 @@ getservent.3
The database connection is held open between get*() calls if
'stayopen' is non-zero (not necessarily 1).
s/zero terminated list/NULL-terminated list/
getrpcent.3
mtk
s/rpc/RPC/.
Rephrase description in terms of a database, rather than a file.
Note that each of the get*() functions opens a connection to
the database if necessary.
s/zero terminated list/NULL-terminated list/
RETURN VALUE: emphasize that returned pointer points to a
statically allocated structure.
SEE ALSO: add getservent_r.3.
mq_notify.3
Venkatesh Srinivas