I need to synchronize on a structure, which will be filled in native code(C code) and the same will be read from the Java Code with JNI. I need to synchronize these. Is there any method I should use, something like the IPC mechanisms?
feedback
|
|
You can use the JNIEnv to acquire the monitor for a Java Object and therefor use the usual Java synchronization to synchronize.. More on the monitor entry and exit here | |||||
feedback
|