diff options
| author | Garrett D'Amore <garrett@damore.org> | 2017-07-04 10:00:19 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2017-07-04 10:00:19 -0700 |
| commit | f39b983f7acbb13c6818ff67b214fdf89597b73d (patch) | |
| tree | 174f1d780c8b3a55459dfd027d7613b522ac2469 /src/core/platform.h | |
| parent | a80654e3e0abb7ddbd81a6159dd89933bdec44e7 (diff) | |
| download | nng-f39b983f7acbb13c6818ff67b214fdf89597b73d.tar.gz nng-f39b983f7acbb13c6818ff67b214fdf89597b73d.tar.bz2 nng-f39b983f7acbb13c6818ff67b214fdf89597b73d.zip | |
Rename aio functions. Enhanced epdesc_finish.
Diffstat (limited to 'src/core/platform.h')
| -rw-r--r-- | src/core/platform.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/platform.h b/src/core/platform.h index 2d83f9b7..7e6dfbbe 100644 --- a/src/core/platform.h +++ b/src/core/platform.h @@ -244,12 +244,12 @@ extern int nni_plat_ipc_connect(nni_plat_ipcsock *, const char *); // nni_plat_ipc_aio_send sends data to the peer. The platform is responsible // for attempting to send all of the data. The iov count will never be // larger than 4. The platform may modify the iovs. -extern void nni_plat_ipc_aio_send(nni_plat_ipcsock *, nni_aio *); +extern void nni_plat_ipc_send(nni_plat_ipcsock *, nni_aio *); // nni_plat_ipc_aio_recv recvs data into the buffers provided by the // iovs. The implementation does not return until the iovs are completely // full, or an error condition occurs. -extern void nni_plat_ipc_aio_recv(nni_plat_ipcsock *, nni_aio *); +extern void nni_plat_ipc_recv(nni_plat_ipcsock *, nni_aio *); // nni_plat_seed_prng seeds the PRNG subsystem. The specified number // of bytes of entropy should be stashed. When possible, cryptographic |
