changeset 17736:62c4fda43d49

accept: document Solaris 10 type glitch * doc/posix-functions/accept.texi (accept): Mention that Solaris 10 'accept' takes void * last arg, not socklen_t *.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 05 Aug 2014 13:14:04 -0700
parents 9ced7b1f8ee9
children f6edaeb5841e
files ChangeLog doc/posix-functions/accept.texi
diffstat 2 files changed, 10 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/ChangeLog	Mon Aug 04 11:30:33 2014 -0700
+++ b/ChangeLog	Tue Aug 05 13:14:04 2014 -0700
@@ -1,3 +1,9 @@
+2014-08-05  Paul Eggert  <eggert@cs.ucla.edu>
+
+	accept: document Solaris 10 type glitch
+	* doc/posix-functions/accept.texi (accept): Mention that
+	Solaris 10 'accept' takes void * last arg, not socklen_t *.
+
 2014-08-04  Paul Eggert  <eggert@cs.ucla.edu>
 
 	extern-inline: port to FreeBSD, DragonFly
--- a/doc/posix-functions/accept.texi	Mon Aug 04 11:30:33 2014 -0700
+++ b/doc/posix-functions/accept.texi	Tue Aug 05 13:14:04 2014 -0700
@@ -28,4 +28,8 @@
 @item
 Some platforms don't have a @code{socklen_t} type; in this case this function's
 third argument type is @samp{int *}.
+@item
+On some platforms, this function's third argument type is @samp{void *},
+not @samp{socklen_t *}:
+Solaris 10.
 @end itemize