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/pipeline/pull.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/pipeline/pull.c')
| -rw-r--r-- | src/protocol/pipeline/pull.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/protocol/pipeline/pull.c b/src/protocol/pipeline/pull.c index 728682dd..fd3d1e29 100644 --- a/src/protocol/pipeline/pull.c +++ b/src/protocol/pipeline/pull.c @@ -106,7 +106,7 @@ nni_pull_pipe_start(void *arg) nni_pull_pipe *pp = arg; // Start the pending pull... - nni_pipe_aio_recv(pp->pipe, &pp->recv_aio); + nni_pipe_recv(pp->pipe, &pp->recv_aio); return (0); } @@ -158,7 +158,7 @@ nni_pull_putq_cb(void *arg) return; } - nni_pipe_aio_recv(pp->pipe, &pp->recv_aio); + nni_pipe_recv(pp->pipe, &pp->recv_aio); } |
