diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-07-02 15:58:45 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-07-02 15:58:45 -0700 |
| commit | 9f5fa865f252f6d71f2d92181b17c038e2c28a8a (patch) | |
| tree | 679158fe7ce63fed24994fabcb53f613e9c2de42 /src/protocol/survey/respond.c | |
| parent | e4c65457c4ca9bf350af7da94733fabdc70acaca (diff) | |
| download | nng-9f5fa865f252f6d71f2d92181b17c038e2c28a8a.tar.gz nng-9f5fa865f252f6d71f2d92181b17c038e2c28a8a.tar.bz2 nng-9f5fa865f252f6d71f2d92181b17c038e2c28a8a.zip | |
Remove the extra _aio_ part of pipe send and recv functions.
Diffstat (limited to 'src/protocol/survey/respond.c')
| -rw-r--r-- | src/protocol/survey/respond.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocol/survey/respond.c b/src/protocol/survey/respond.c index 68e4b00f..840b2582 100644 --- a/src/protocol/survey/respond.c +++ b/src/protocol/survey/respond.c @@ -193,7 +193,7 @@ nni_resp_pipe_start(void *arg) return (rv); } - nni_pipe_aio_recv(ppipe->npipe, &ppipe->aio_recv); + nni_pipe_recv(ppipe->npipe, &ppipe->aio_recv); nni_msgq_aio_get(ppipe->sendq, &ppipe->aio_getq); return (rv); @@ -283,7 +283,7 @@ nni_resp_getq_cb(void *arg) ppipe->aio_send.a_msg = ppipe->aio_getq.a_msg; ppipe->aio_getq.a_msg = NULL; - nni_pipe_aio_send(ppipe->npipe, &ppipe->aio_send); + nni_pipe_send(ppipe->npipe, &ppipe->aio_send); } @@ -379,7 +379,7 @@ nni_resp_putq_cb(void *arg) nni_pipe_stop(ppipe->npipe); } - nni_pipe_aio_recv(ppipe->npipe, &ppipe->aio_recv); + nni_pipe_recv(ppipe->npipe, &ppipe->aio_recv); } |
