8280944: Enable Unix domain sockets in Windows Selector notification mechanism

Reviewed-by: dfuchs, alanb
This commit is contained in:
Michael McMahon 2022-02-02 15:04:59 +00:00
parent ce71e8b281
commit 87ab0994de
3 changed files with 34 additions and 13 deletions

View file

@ -75,7 +75,7 @@ class WEPollSelectorImpl extends SelectorImpl {
// wakeup support
try {
this.pipe = new PipeImpl(sp, /*buffering*/ false);
this.pipe = new PipeImpl(sp, /* AF_UNIX */ true, /*buffering*/ false);
} catch (IOException ioe) {
WEPoll.freePollArray(pollArrayAddress);
WEPoll.close(eph);