diff options
Diffstat (limited to 'src/protocol/pipeline/pull.c')
| -rw-r--r-- | src/protocol/pipeline/pull.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/protocol/pipeline/pull.c b/src/protocol/pipeline/pull.c index 80ff4245..39e809e6 100644 --- a/src/protocol/pipeline/pull.c +++ b/src/protocol/pipeline/pull.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 @@ -112,8 +113,8 @@ nni_pull_pipe_stop(void *arg) { nni_pull_pipe *pp = arg; - nni_aio_stop(&pp->putq_aio); - nni_aio_stop(&pp->recv_aio); + nni_aio_cancel(&pp->putq_aio, NNG_ECANCELED); + nni_aio_cancel(&pp->recv_aio, NNG_ECANCELED); } static void |
