Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-2018226 | 1.2.0 | Tom Rodriguez | P2 | Closed | Fixed | 1.2beta3 |
The customer is attempting to implement a multi-threaded application
server which needs to handle >1024 sockets. The choice of select(3C)
instead of poll(2) means that the current java runtime is limited to
1024 file desciptors. Using poll(2) would remove this limit (unless
it is hard-coded elsewhere).
server which needs to handle >1024 sockets. The choice of select(3C)
instead of poll(2) means that the current java runtime is limited to
1024 file desciptors. Using poll(2) would remove this limit (unless
it is hard-coded elsewhere).
- backported by
-
JDK-2018226 java runtime uses select(3C) but should use poll(2)
- Closed