From 3175c3998993315d926c789b9119ddee8c55cfb4 Mon Sep 17 00:00:00 2001 From: sravani1510 Date: Wed, 1 Oct 2025 01:14:47 +0530 Subject: [PATCH] ibmi: fix undefined symbol uv__ahafs_event --- src/unix/core.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/unix/core.c b/src/unix/core.c index 118bc5759..9dad0e352 100644 --- a/src/unix/core.c +++ b/src/unix/core.c @@ -905,9 +905,11 @@ static int maybe_resize(uv_loop_t* loop, unsigned int len) { void uv__io_cb(uv_loop_t* loop, uv__io_t* w, unsigned int events) { switch (uv__io_cb_get(w)) { + #if ! defined(__PASE__) case UV__AHAFS_EVENT: uv__ahafs_event(loop, w, events); break; + #endif case UV__ASYNC_IO: uv__async_io(loop, w, events); break;