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?

link|improve this question

You need to use locking in the C space. IPC is one option if that is supported on your device. What locking mechanisms are available to you in C? – Peter Lawrey Feb 12 '11 at 9:15
Hey Android007, I am doing a project that seems like it does similar things as yours. I was wondering if you wouldn't mind sharing your code or at least how you get the bitmap to continuously update. Right now I create a single bitmap from a randomly generated color array, and would like to update it at about 15 fps. My email is mmeisner204@gmail.com Thanks – user750956 May 12 '11 at 17:22
feedback

1 Answer

up vote 1 down vote accepted

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

link|improve this answer
any examples on how to use them? Because I can't find them anywhere and I am a very beginner to JAVA. – Android007 Feb 14 '11 at 22:49
I do not have any simple code sample I can share this probably explains the use a bit better – Gorkem Ercan Feb 15 '11 at 13:59
feedback

Your Answer

 
or
required, but never shown

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