Trouble using JNI
Hi everyone
I have a problem, with a class which has native functions(JNI).
The application I抦 developing, uses thread抯. At the beginning before thread starts his job, application calls a native function without problem. But when another thread calls another native function(same class) generates the next error :
java.lang.UnsatisfiedLinkError: estarEnEjecucion
at MemoriaCompartida.estarEnEjecucion(Native Method)
at MemoriaCompartida.estarEnEjecucion(MemoriaCompartida.java:72)
at Censor.timerIntervalo(Censor.java:82)
at Timer.run(Timer.java:225)
at java.lang.Thread.run(Thread.java:534)
What seems to be the problem?
Thanks a lot for your help

