Here is the structure of my program: - 2 independent modules libA and libB, each one is a single shared library libA.so and libB.so - A java activity creating 2 threads thA and thB, each one of them calling native JNI functions from one library (thA calling functions from libA.so and thB calling function from libB.so).

I want to pass data of native types (that Java does not know anything about, containing types like pointers that Java can't handle) between both libraries, but I couldn't find any way to make them communicate.

Supossing both libraries know the definition of a native type "typeA", is there a way to pass an object of typeA from libA to libB (preferably without having to copy the data in the VM memory). Pass a memory pointer maybe??

Thanks

link|improve this question
feedback

1 Answer

Passing a pointer to a typeA from A to B may be an option. It depends on the live cycle of typeA in the libraries though. Make sure that the typeA object is not deleted in one library while it's still in use in the other.

One way to pass the pointer is to go over JNI and use a jlong/long to represent the pointer.

link|improve this answer
Could you please elaborate on how to switch between threads thA/thB for instance how to run some code on thread thB when thread thA is being active? Also see my question stackoverflow.com/questions/8667117/…. – youri Jan 2 at 7:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.