aboutsummaryrefslogtreecommitdiff
path: root/src/protocol/pipeline/push.c
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/pipeline/push.c
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/pipeline/push.c')
-rw-r--r--src/protocol/pipeline/push.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocol/pipeline/push.c b/src/protocol/pipeline/push.c
index 7d3be42e..e39adb7a 100644
--- a/src/protocol/pipeline/push.c
+++ b/src/protocol/pipeline/push.c
@@ -125,7 +125,7 @@ nni_push_pipe_start(void *arg)
// Schedule a receiver. This is mostly so that we can detect
// a closed transport pipe.
- nni_pipe_aio_recv(pp->pipe, &pp->aio_recv);
+ nni_pipe_recv(pp->pipe, &pp->aio_recv);
// Schedule a sender.
nni_msgq_aio_get(push->uwq, &pp->aio_getq);
@@ -159,7 +159,7 @@ nni_push_recv_cb(void *arg)
}
nni_msg_free(pp->aio_recv.a_msg);
pp->aio_recv.a_msg = NULL;
- nni_pipe_aio_recv(pp->pipe, &pp->aio_recv);
+ nni_pipe_recv(pp->pipe, &pp->aio_recv);
}
@@ -195,7 +195,7 @@ nni_push_getq_cb(void *arg)
pp->aio_send.a_msg = aio->a_msg;
aio->a_msg = NULL;
- nni_pipe_aio_send(pp->pipe, &pp->aio_send);
+ nni_pipe_send(pp->pipe, &pp->aio_send);
}