Skip to content

Commit f3ce527

Browse files
authored
ibmi: add stub function to satisfy linker (libuv#4905)
Add a stub function for no-ahafs builds. src/unix/core.c won't actually call uv__ahafs_event but the linker still needs to see a symbol. Like commit 87943b0 but for IBM i instead of AIX this time.
1 parent 80a5e3b commit f3ce527

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

src/unix/ibmi.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -538,3 +538,9 @@ int uv_get_process_title(char* buffer, size_t size) {
538538

539539
void uv__process_title_cleanup(void) {
540540
}
541+
542+
void uv__ahafs_event(uv_loop_t* loop,
543+
uv__io_t* event_watch,
544+
unsigned int fflags) {
545+
/* Stub function to satisfy the linker. */
546+
}

0 commit comments

Comments
 (0)