Skip to content

Commit e1f62a6

Browse files
committedFeb 6, 2022
Poller.blockedThreads may trigger usge of polling facility before any I/O
1 parent 0faaa26 commit e1f62a6

File tree

4 files changed

+12
-16
lines changed

4 files changed

+12
-16
lines changed
 

‎src/java.base/linux/classes/sun/nio/ch/EPoll.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,9 @@ private EPoll() { }
5050
* epoll_data_t data;
5151
* }
5252
*/
53+
static {
54+
IOUtil.load();
55+
}
5356
private static final int SIZEOF_EPOLLEVENT = eventSize();
5457
private static final int OFFSETOF_EVENTS = eventsOffset();
5558
private static final int OFFSETOF_FD = dataOffset();
@@ -115,8 +118,4 @@ static int getEvents(long eventAddress) {
115118

116119
static native int wait(int epfd, long pollAddress, int numfds, int timeout)
117120
throws IOException;
118-
119-
static {
120-
IOUtil.load();
121-
}
122121
}

‎src/java.base/macosx/classes/sun/nio/ch/KQueue.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,9 @@ private KQueue() { }
4747
* void *udata; // opaque user data identifier
4848
* };
4949
*/
50+
static {
51+
IOUtil.load();
52+
}
5053
private static final int SIZEOF_KQUEUEEVENT = keventSize();
5154
private static final int OFFSET_IDENT = identOffset();
5255
private static final int OFFSET_FILTER = filterOffset();
@@ -114,8 +117,4 @@ static short getFlags(long address) {
114117

115118
static native int poll(int kqfd, long pollAddress, int nevents, long timeout)
116119
throws IOException;
117-
118-
static {
119-
IOUtil.load();
120-
}
121120
}

‎src/java.base/windows/classes/sun/nio/ch/WEPoll.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ private WEPoll() { }
5252
* epoll_data_t data;
5353
* }
5454
*/
55+
static {
56+
IOUtil.load();
57+
}
5558
private static final int SIZEOF_EPOLLEVENT = eventSize();
5659
private static final int OFFSETOF_EVENTS = eventsOffset();
5760
private static final int OFFSETOF_SOCK = dataOffset();
@@ -139,8 +142,4 @@ static native int wait(long h, long pollAddress, int numfds, int timeout)
139142
throws IOException;
140143

141144
static native void close(long h);
142-
143-
static {
144-
IOUtil.load();
145-
}
146145
}

‎src/java.base/windows/classes/sun/nio/ch/WSAPoll.java

+3-4
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ private WSAPoll() { }
4343
* SHORT revents;
4444
* } WSAPOLLFD;
4545
*/
46+
static {
47+
IOUtil.load();
48+
}
4649
private static final int SIZE_POLLFD = pollfdSize();
4750
private static final int FD_OFFSET = fdOffset();
4851
private static final int EVENTS_OFFSET = eventsOffset();
@@ -131,8 +134,4 @@ static short getRevents(long address, int i) {
131134

132135
static native int poll(long pollAddress, int numfds, int timeout)
133136
throws IOException;
134-
135-
static {
136-
IOUtil.load();
137-
}
138137
}

0 commit comments

Comments
 (0)
Please sign in to comment.