diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-07-06 09:41:52 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-07-06 09:41:52 -0700 |
| commit | 42b7c4cc25ee87c5838a53efee1ca6bccbe3e765 (patch) | |
| tree | b97bc2df9606dbfe64293ae7fedc4292e04c1386 /src/platform | |
| parent | ea97ec308504650538dda2513c6855ba7a2a49a5 (diff) | |
| download | nng-42b7c4cc25ee87c5838a53efee1ca6bccbe3e765.tar.gz nng-42b7c4cc25ee87c5838a53efee1ca6bccbe3e765.tar.bz2 nng-42b7c4cc25ee87c5838a53efee1ca6bccbe3e765.zip | |
fixes #566 Windows iov resubmit routine is not used.
Diffstat (limited to 'src/platform')
| -rw-r--r-- | src/platform/windows/win_impl.h | 1 | ||||
| -rw-r--r-- | src/platform/windows/win_iocp.c | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/platform/windows/win_impl.h b/src/platform/windows/win_impl.h index 73dc3660..263a322b 100644 --- a/src/platform/windows/win_impl.h +++ b/src/platform/windows/win_impl.h @@ -89,7 +89,6 @@ extern int nni_win_error(int); extern int nni_win_event_init(nni_win_event *, nni_win_event_ops *, void *); extern void nni_win_event_fini(nni_win_event *); extern void nni_win_event_submit(nni_win_event *, nni_aio *); -extern void nni_win_event_resubmit(nni_win_event *, nni_aio *); extern void nni_win_event_close(nni_win_event *); extern void nni_win_event_complete(nni_win_event *, int); diff --git a/src/platform/windows/win_iocp.c b/src/platform/windows/win_iocp.c index 5ead9cbc..b8e95f6c 100644 --- a/src/platform/windows/win_iocp.c +++ b/src/platform/windows/win_iocp.c @@ -146,11 +146,6 @@ nni_win_event_start(nni_win_event *evt) nni_win_event_finish(evt); } } -void -nni_win_event_resubmit(nni_win_event *evt, nni_aio *aio) -{ - nni_aio_list_prepend(&evt->aios, aio); -} void nni_win_event_submit(nni_win_event *evt, nni_aio *aio) |
