summaryrefslogtreecommitdiff
path: root/doc/libstddjb
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2014-12-18 23:30:55 +0000
committerLaurent Bercot <ska-skaware@skarnet.org>2014-12-18 23:30:55 +0000
commit76e4960aa9b9badbd9caa376e303f9360ebb7ccd (patch)
tree374eb4611aaaa3af6110a447aa1773b01ee021cf /doc/libstddjb
parenta46c6ca31cfd61d25fb3579807e3405764bcec72 (diff)
downloadskalibs-76e4960aa9b9badbd9caa376e303f9360ebb7ccd.tar.xz
Documentation fixes
Diffstat (limited to 'doc/libstddjb')
-rw-r--r--doc/libstddjb/djbunix.html2
-rw-r--r--doc/libstddjb/genwrite.html2
-rw-r--r--doc/libstddjb/iopause.html2
-rw-r--r--doc/libstddjb/safewrappers.html2
4 files changed, 4 insertions, 4 deletions
diff --git a/doc/libstddjb/djbunix.html b/doc/libstddjb/djbunix.html
index 37235c1..02f8624 100644
--- a/doc/libstddjb/djbunix.html
+++ b/doc/libstddjb/djbunix.html
@@ -465,7 +465,7 @@ The parent's end of the pipe will be stored in *<em>fd</em>.
</p>
<p>
-<code> pid_t child_spawn1_socket (char const *file, char const *const *argv, char const *const *envp, int *fd)
+<code> pid_t child_spawn1_socket (char const *file, char const *const *argv, char const *const *envp, int *fd) </code> <br />
Like <tt>child_spawn0</tt>, except that a socket is created between the parent
and the child. Both the child's stdin and stdout point to the socket; the parent has
its end of the socket available in *<em>fd</em>.
diff --git a/doc/libstddjb/genwrite.html b/doc/libstddjb/genwrite.html
index 33ff4d3..3bf6fd8 100644
--- a/doc/libstddjb/genwrite.html
+++ b/doc/libstddjb/genwrite.html
@@ -46,7 +46,7 @@ stuff to the target without flushing it
(which can be <tt>genwrite_put_stralloc</tt>, <tt>genwrite_put_buffer</tt>,
<tt>genwrite_put_bufalloc</tt> or any
compatible user-defined function) in <tt>.put</tt>, a pointer to a function
-that flushes the target (which can be <tt>genwrite_flush_stralloc</tt>,
+that flushes the target (which can be <tt>genwrite_flush_stralloc</tt>,
<tt>genwrite_flush_buffer</tt>, <tt>genwrite_flush_bufalloc</tt> or any
compatible user-defined function) in <tt>.flush</tt>, and a pointer to
the target writing structure in <tt>.target</tt>.
diff --git a/doc/libstddjb/iopause.html b/doc/libstddjb/iopause.html
index 72eedde..da6ff48 100644
--- a/doc/libstddjb/iopause.html
+++ b/doc/libstddjb/iopause.html
@@ -188,7 +188,7 @@ if it is available; but if it is not, then <tt>iopause_poll</tt> defaults to
which has a more comfortable API than
<a href="http://pubs.opengroup.org/onlinepubs/9699919799/functions/select.html">select()</a>,
but a maximum precision of 1 millisecond which might not be enough for some applications; whereas
-<tt>iopause_select<tt> defaults to select(), which incurs some CPU overhead for the
+<tt>iopause_select</tt> defaults to select(), which incurs some CPU overhead for the
API conversion, but has a 1 microsecond precision.
</p>
diff --git a/doc/libstddjb/safewrappers.html b/doc/libstddjb/safewrappers.html
index 37d2425..da8608b 100644
--- a/doc/libstddjb/safewrappers.html
+++ b/doc/libstddjb/safewrappers.html
@@ -70,7 +70,7 @@ signal is caught. And that means SA_RESTART should not be used.
</p>
<p>
- Which means that other system calls performed when the signal handler has
+ Which also means that other system calls performed when the signal handler has
been installed, for instance in the body of the loop, will <em>not</em> be
protected, and can return -1 EINTR if a signal is caught at the wrong time.
</p>