]> Savannah Git Hosting - gnulib.git/commitdiff
accept: document Solaris 10 type glitch
authorPaul Eggert <eggert@cs.ucla.edu>
Tue, 5 Aug 2014 20:14:04 +0000 (13:14 -0700)
committerPaul Eggert <eggert@cs.ucla.edu>
Tue, 5 Aug 2014 20:22:06 +0000 (13:22 -0700)
* doc/posix-functions/accept.texi (accept): Mention that
Solaris 10 'accept' takes void * last arg, not socklen_t *.

ChangeLog
doc/posix-functions/accept.texi

index bdf743a691abd4c76802511390557b5756cec6bf..43b8fe3ef3f12c4128976393fe50316b2bf1b18a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
index b937e15f00dfe8278e9efc5caff47b33931eea5b..65dab3719ead156629a9acdb2ba9d9f6c4f41fdd 100644 (file)
@@ -28,4 +28,8 @@ in calls to @code{read}, @code{write}, and @code{close}; you have to use
 @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