diff options
author | Miles Bader <miles@gnu.org> | 1995-07-16 16:28:55 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1995-07-16 16:28:55 +0000 |
commit | 3e069dc8b35e6afbd1cc136d8f82d0e6e9f10760 (patch) | |
tree | 845af539479cc0620b6350c1c1283846b5694271 /pflocal/connq.c | |
parent | bf09e77dc196ed48b5b51bd286ce0320eca183ce (diff) |
Formerly connq.c.~5~
Diffstat (limited to 'pflocal/connq.c')
-rw-r--r-- | pflocal/connq.c | 68 |
1 files changed, 39 insertions, 29 deletions
diff --git a/pflocal/connq.c b/pflocal/connq.c index e3de6613..b94c69f8 100644 --- a/pflocal/connq.c +++ b/pflocal/connq.c @@ -18,9 +18,9 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include <socket.h> +#include <cthreads.h> -#include "pflocal.h" +#include "connq.h" /* A queue for queueing incoming connections. */ struct connq @@ -31,22 +31,24 @@ struct connq /* The connection request queue. */ unsigned length; unsigned head, tail; - struct connq_request *queue; + struct connq_request **queue; /* Threads that have done an accept on this queue wait on this condition. */ struct condition listeners; unsigned num_listeners; struct mutex lock; -} +}; -extern inline qnext (struct connq *ca, unsigned pos) +static inline unsigned +qnext (struct connq *cq, unsigned pos) { - return (pos + 1 == cq->length ? 0 : pos + 1); + return (pos + 1 == cq->length) ? 0 : pos + 1; } -extern inline qprev (struct connq *ca, unsigned pos) +static inline unsigned +qprev (struct connq *cq, unsigned pos) { - return (pos == 0 ? cq->length - 1 : pos - 1); + return (pos == 0) ? cq->length - 1 : pos - 1; } /* ---------------------------------------------------------------- */ @@ -119,8 +121,6 @@ error_t connq_listen (struct connq *cq, int noblock, struct connq_request **req, struct sock **sock) { - error_t err = 0; - mutex_lock (&cq->lock); if (noblock && cq->head == cq->tail) @@ -153,9 +153,11 @@ connq_listen (struct connq *cq, int noblock, void connq_request_complete (struct connq_request *req, error_t err) { + mutex_lock (&req->lock); req->err = err; - req->complete = 1; - condition_signal (&req->signal, &req->lock); + req->completed = 1; + condition_signal (&req->signal); + mutex_unlock (&req->lock); } /* Try to connect SOCK with the socket listening on CQ. If NOBLOCK is true, @@ -180,17 +182,23 @@ connq_connect (struct connq *cq, int noblock, struct sock *sock) { cq->queue[cq->head] = &req; cq->head = next; - } - - /* Hold REQ.LOCK before we signal the condition so that we're sure to be - woken up. */ - mutex_lock (&req.lock); - condition_signal (&cq->listeners, &cq->lock); - while (!req.completed) - condition_wait (&req.signal, &req.lock); + /* Hold REQ.LOCK before we signal the condition so that we're sure to be + woken up. */ + mutex_lock (&req.lock); + + condition_signal (&cq->listeners); + mutex_unlock (&cq->lock); - return req.err; + while (!req.completed) + condition_wait (&req.signal, &req.lock); + + err = req.err; + + mutex_unlock (&req.lock); + } + + return err; } /* Set CQ's queue length to LENGTH. Any sockets already waiting for a @@ -207,22 +215,24 @@ connq_set_length (struct connq *cq, int length) /* Shrinking it less so. */ { int i; - struct connq_request *new_queue = + struct connq_request **new_queue = malloc (sizeof (struct connq_request *) * length); for (i = 0; i < cq->length && cq->head != cq->tail;) { - cq->head = qprev (cq, cq->head) - if (i < length) - /* Keep this connect request in the queue. */ - new_queue[length - i] = cq->queue[cq->head]; - else - /* Punt this one. */ - connq_request_complete (cq->queue[cq->head], ECONNREFUSED); + cq->head = qprev (cq, cq->head); + if (i < length) + /* Keep this connect request in the queue. */ + new_queue[length - i] = cq->queue[cq->head]; + else + /* Punt this one. */ + connq_request_complete (cq->queue[cq->head], ECONNREFUSED); } } cq->noqueue = 0; /* Turn on queueing. */ mutex_unlock (&cq->lock); + + return 0; } |