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