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