aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/bus
diff options
context:
space:
mode:
authorGarrett D'Amore <garrett@damore.org>2017-07-02 15:58:45 -0700
committerGarrett D'Amore <garrett@damore.org>2017-07-02 15:58:45 -0700
commit9f5fa865f252f6d71f2d92181b17c038e2c28a8a (patch)
tree679158fe7ce63fed24994fabcb53f613e9c2de42 /src/protocol/bus
parente4c65457c4ca9bf350af7da94733fabdc70acaca (diff)
downloadnng-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/bus')
-rw-r--r--src/protocol/bus/bus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/bus/bus.c b/src/protocol/bus/bus.c
index 1c32fec6..5755d5a9 100644
--- a/src/protocol/bus/bus.c
+++ b/src/protocol/bus/bus.c
@@ -215,7 +215,7 @@ nni_bus_pipe_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);
}
@@ -351,7 +351,7 @@ nni_bus_pipe_getq(nni_bus_pipe *ppipe)
static void
nni_bus_pipe_recv(nni_bus_pipe *ppipe)
{
- nni_pipe_aio_recv(ppipe->npipe, &ppipe->aio_recv);
+ nni_pipe_recv(ppipe->npipe, &ppipe->aio_recv);
}