summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorstanley lieber <stanley.lieber@gmail.com>2014-07-02 19:01:20 -0400
committerstanley lieber <stanley.lieber@gmail.com>2014-07-02 19:01:20 -0400
commit5814e66560500af8b458ffbbb6e1a91c9730baa4 (patch)
tree653852b1a4cb5996520a78195151510f4c11b444 /sys
parentfa56753ed842ae5416ecbb7e75e39ec85a36c68c (diff)
9pqueue(2): english
Diffstat (limited to 'sys')
-rw-r--r--sys/man/2/9pqueue8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/man/2/9pqueue b/sys/man/2/9pqueue
index 5cf6bb269..ff01649e7 100644
--- a/sys/man/2/9pqueue
+++ b/sys/man/2/9pqueue
@@ -3,7 +3,7 @@
Reqqueue,
reqqueuecreate,
reqqueuepush,
-reqqueueflush \- defered processing of 9P requests
+reqqueueflush \- deferred processing of 9P requests
.SH SYNOPSIS
.ft L
.nf
@@ -32,7 +32,7 @@ void reqqueueflush(Reqqueue *q, Req *r);
.fi
.SH DESCRIPTION
.I Reqqueue
-provides routines for defered processing of 9p request in
+provides routines for deferred processing of 9p request in
multithreaded 9p servers.
.PP
The
@@ -49,10 +49,10 @@ is called with request
and its handler function
.IR f .
.PP
-A previously submited request can be flushed from a queue
+A previously submitted request can be flushed from a queue
by
.I reqqueueflush
-which will reply the request immidiately when processing has
+which will remove the request immediately if processing has
not started. If processing has been started, the process
will be interrupted.
.SH SOURCE