JDK-8197498 : (se) kevent polling should ignore signal interrupt (EINTR)
  • Type: Bug
  • Component: core-libs
  • Sub-Component: java.nio
  • Affected Version: 10,11
  • Priority: P4
  • Status: Closed
  • Resolution: Fixed
  • OS: os_x
  • CPU: x86_64
  • Submitted: 2018-02-09
  • Updated: 2019-03-15
  • Resolved: 2018-02-12
The Version table provides details related to the release that this issue/RFE will be addressed.

Unresolved : Release in which this issue/RFE will be addressed.
Resolved: Release in which this issue/RFE has been resolved.
Fixed : Release in which this issue/RFE has been fixed. The release containing this fix may be available for download as an Early Access Release or a General Availability Release.

To download the current JDK release, click here.
JDK 11
11 b01Fixed
Related Reports
Relates :  
Relates :  
Description
The kevent() call can receive an interrupt before the timeout has expired and any events have been queued. In this case the call will return -1 and errno will be set to EINTR. The description of EINTR is

"A signal was delivered before the timeout expired and before any events were placed on the kqueue for return."

https://www.freebsd.org/cgi/man.cgi?kqueue