We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8dbc081 commit 620cae2Copy full SHA for 620cae2
1 file changed
threads.tex
@@ -1519,10 +1519,10 @@
1519
thread safe. That said, it does not make it totally safe to use.
1520
(not mentioning that a program relying on this behavior is not portable)
1521
see example \example{reentrant/gethostbyname.c}.
1522
-A bit better is to use reentrant version of this function called
+A bit better is to use reentrant version of this function called
1523
\texttt{gethostbyname\_r} (if it is available on given system),
1524
which takes the address of where the result will be stored as parameter,
1525
-which makes it reentrant. Much better is to use standard function
+which makes it reentrant. Better yet is to use standard function
1526
\texttt{getaddrinfo} (see page) \pageref{GETADDRINFO}, which is reentrant
1527
by itself.
1528
0 commit comments