Getting "UnsatisfiedLinkError" in io_uring for methods that were defined as "static inline" in the header

Gavin Ray ray.gavin97 at gmail.com
Wed Sep 21 19:35:54 UTC 2022


I'm not super familiar with how linking and symbols work

The liburing header is weird, it contains a mix of definitions:
https://github.com/axboe/liburing/blob/master/src/include/liburing.h

Some of them are traditional header defs, like:

int io_uring_queue_init(unsigned entries, struct io_uring *ring, unsigned
flags);

But there are a lot of them which are defined like this:


static inline int io_uring_wait_cqe(struct io_uring *ring, struct
io_uring_cqe **cqe_ptr)

Using "objdump" on the ".so", I can see that none of these "static inline"
functions appear

I have an almost-working test of using io_uring purely through Panama here,
but it fails due to the above:
https://github.com/GavinRay97/panama-liburing/blob/82f83a247bb78c26d787992fca28ea1b951dfd3c/lib/src/test/java/panama/liburing/LibraryTest.java#L25-L59

How are you meant to be able to use these from the Foreign Memory API?
Do I need to write a second library and built it, that re-exports these?

Thanks, and sorry for so many newbie questions
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://mail.openjdk.org/pipermail/panama-dev/attachments/20220921/fbcb390c/attachment.htm>


More information about the panama-dev mailing list