<div dir="ltr"><div dir="ltr"><div dir="ltr">I'm not super familiar with how linking and symbols work<div><br></div><div>The liburing header is weird, it contains a mix of definitions:</div><div><a href="https://github.com/axboe/liburing/blob/master/src/include/liburing.h">https://github.com/axboe/liburing/blob/master/src/include/liburing.h</a><br></div><div><br></div><div>Some of them are traditional header defs, like:</div><div><br></div></div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div dir="ltr"><div><div>int io_uring_queue_init(unsigned entries, struct io_uring *ring, unsigned flags);</div></div><div><br></div></div></blockquote>But there are a lot of them which are defined like this:<div><blockquote style="margin:0px 0px 0px 40px;border:none;padding:0px"><div><div><br></div><div>static inline int io_uring_wait_cqe(struct io_uring *ring, struct io_uring_cqe **cqe_ptr)</div></div><div><br></div></blockquote>Using "objdump" on the ".so", I can see that none of these "static inline" functions appear</div><div><br></div><div>I have an almost-working test of using io_uring purely through Panama here, but it fails due to the above:</div><div><a href="https://github.com/GavinRay97/panama-liburing/blob/82f83a247bb78c26d787992fca28ea1b951dfd3c/lib/src/test/java/panama/liburing/LibraryTest.java#L25-L59">https://github.com/GavinRay97/panama-liburing/blob/82f83a247bb78c26d787992fca28ea1b951dfd3c/lib/src/test/java/panama/liburing/LibraryTest.java#L25-L59</a><br></div><div><br></div><div>How are you meant to be able to use these from the Foreign Memory API?</div><div>Do I need to write a second library and built it, that re-exports these?</div><div><br></div><div>Thanks, and sorry for so many newbie questions</div><div><br></div><div><br></div></div></div>