diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-07-15 17:13:36 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-07-15 17:13:36 -0700 |
| commit | 34ee6ece5adf86a324c89ed4dc96e77ad0dac893 (patch) | |
| tree | 0f17bc7acb142173491422a9013842c74fb36836 /src/protocol/reqrep/req.c | |
| parent | bef8ea546a7efd2726f51207e26eafc75979573d (diff) | |
| download | nng-34ee6ece5adf86a324c89ed4dc96e77ad0dac893.tar.gz nng-34ee6ece5adf86a324c89ed4dc96e77ad0dac893.tar.bz2 nng-34ee6ece5adf86a324c89ed4dc96e77ad0dac893.zip | |
Bus, Req/Rep, and Surv/Resp should use aio_cancel instead of aio_stop.
Diffstat (limited to 'src/protocol/reqrep/req.c')
| -rw-r--r-- | src/protocol/reqrep/req.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/src/protocol/reqrep/req.c b/src/protocol/reqrep/req.c index f77700f5..f13094ff 100644 --- a/src/protocol/reqrep/req.c +++ b/src/protocol/reqrep/req.c @@ -1,5 +1,6 @@ // // Copyright 2017 Garrett D'Amore <garrett@damore.org> +// Copyright 2017 Capitar IT Group BV <info@capitar.com> // // This software is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this @@ -209,11 +210,11 @@ nni_req_pipe_stop(void *arg) nni_req_pipe *rp = arg; nni_req_sock *req = rp->req; - nni_aio_stop(&rp->aio_getq); - nni_aio_stop(&rp->aio_putq); - nni_aio_stop(&rp->aio_recv); - nni_aio_stop(&rp->aio_sendcooked); - nni_aio_stop(&rp->aio_sendraw); + nni_aio_cancel(&rp->aio_getq, NNG_ECANCELED); + nni_aio_cancel(&rp->aio_putq, NNG_ECANCELED); + nni_aio_cancel(&rp->aio_recv, NNG_ECANCELED); + nni_aio_cancel(&rp->aio_sendcooked, NNG_ECANCELED); + nni_aio_cancel(&rp->aio_sendraw, NNG_ECANCELED); // At this point there should not be any further AIOs running. // Further, any completion tasks have completed. |
