diff options
| author | Garrett D'Amore <garrett@damore.org> | 2018-08-20 16:09:12 -0700 |
|---|---|---|
| committer | Garrett D'Amore <garrett@damore.org> | 2018-08-20 16:18:24 -0700 |
| commit | a14ea4aef0f36879b4eab10288151f971b9e4665 (patch) | |
| tree | d81a800f0b2aeb7387e4c2759c2f3f840abad2c1 /src/platform/windows/win_thread.c | |
| parent | 5febda44a4dd207bddab52613738b2d2545ad1a9 (diff) | |
| download | nng-a14ea4aef0f36879b4eab10288151f971b9e4665.tar.gz nng-a14ea4aef0f36879b4eab10288151f971b9e4665.tar.bz2 nng-a14ea4aef0f36879b4eab10288151f971b9e4665.zip | |
fixes #668 Remove the old win_event stuff
Diffstat (limited to 'src/platform/windows/win_thread.c')
| -rw-r--r-- | src/platform/windows/win_thread.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/platform/windows/win_thread.c b/src/platform/windows/win_thread.c index 3b4e63bc..b9743c5e 100644 --- a/src/platform/windows/win_thread.c +++ b/src/platform/windows/win_thread.c @@ -188,7 +188,6 @@ nni_plat_init(int (*helper)(void)) if (!plat_inited) { if (((rv = nni_win_io_sysinit()) != 0) || - ((rv = nni_win_iocp_sysinit()) != 0) || ((rv = nni_win_ipc_sysinit()) != 0) || ((rv = nni_win_tcp_sysinit()) != 0) || ((rv = nni_win_udp_sysinit()) != 0) || @@ -213,7 +212,6 @@ nni_plat_fini(void) nni_win_ipc_sysfini(); nni_win_udp_sysfini(); nni_win_tcp_sysfini(); - nni_win_iocp_sysfini(); nni_win_io_sysfini(); WSACleanup(); plat_inited = 0; |
