Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

For an existing java application (which I do not have the source code) I am developing a plug-in which is calls a shared library. Unfortunately this shared library (written in C) is not thread safe.

The application is calling my plugin within several concurrent threads hence the shared library is called by these concurrent threads and naturally it gives many errors due to concurrency ( e.g: already open files are prevented from being opened etc)

I am accessing the shared library via JNA. I even have the source code of this shared library but converting to a thread-safe library will be time consuming and is currently not possible. Are there other suggested ways to overcome this issue?

All native functions are accessed from only one Java method so I think that making this method synchronized could be the solution. Would you agree?

I have tried this, but unfortunately the issue is not solved. In the log file I still see that the Java method is called concurrently and hence my own efforts to solve this have failed.

share|improve this question

1 Answer

up vote 2 down vote accepted

Yes, using synchronization would be a valid solution to this.

If you do that and still see concurrent access then there are (at least) two possible causes:

  • you don't always synchronize on the same object (for example your method is synchronized, but it is non-static and called on different objects) or
  • multiple instances of the class with the native call are loaded (actually this is a sub-type of the first one).
share|improve this answer
Yes my method was not static. I've changed it to static, and now problem seems to be resolved. Thanks a lot... – user544799 Aug 8 '11 at 16:51
1  
JNA provides Native.synchronizedLibrary(Library) to ensure no native methods are called concurrently. – technomage Sep 22 '11 at 15:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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