Closed wch closed 6 years ago
This fixes #144. On Windows, calling uv_close() on a handle does not close it immediately, but first puts it into a closing state. This makes sure we don't try to close it twice.
uv_close()
See here for an example: https://github.com/joyent/libuv/blob/master/test/task.h#L222-L225
This fixes #144. On Windows, calling
uv_close()
on a handle does not close it immediately, but first puts it into a closing state. This makes sure we don't try to close it twice.See here for an example: https://github.com/joyent/libuv/blob/master/test/task.h#L222-L225