Skip to content

Commit 78db8ca

Browse files
committed
fix: missing epoll export at epollBusyWait0
Signed-off-by: GitHub <noreply@github.com>
1 parent b77d17d commit 78db8ca

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

packages/transport/transport-epoll/src/main/cpp/netty_epoll_native.c

+4
Original file line numberDiff line numberDiff line change
@@ -951,6 +951,10 @@ JNIEXPORT jint Java_io_netty_channel_epoll_Native_timerFd(JNIEnv* env, jclass cl
951951
return netty_epoll_native_timerFd(env, clazz);
952952
}
953953

954+
JNIEXPORT jint Java_io_netty_channel_epoll_Native_epollBusyWait0(JNIEnv* env, jclass clazz, jint efd, jlong address, jint len) {
955+
return netty_epoll_native_epollBusyWait0(env, clazz, efd, address, len);
956+
}
957+
954958
JNIEXPORT jint Java_io_netty_channel_epoll_Native_epollWait(JNIEnv* env, jclass clazz, jint efd, jlong address, jint len, jint timeout) {
955959
return netty_epoll_native_epollWait(env, clazz, efd, address, len, timeout);
956960
}

0 commit comments

Comments
 (0)