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

I am writing a client-server application using Java-RMI. Some server-side ressources have to be accessed in mutual exclusion (I am using locks for that purpose).

Now I was wondering what happens when:

  1. The client calls a remote method on the server
  2. The remote method acquires a lock for a critical section
  3. The client crashes before the remote method exits the critical section

Will any locks acquired by the remote method call associated to that client be released? Or will it just be impossible for other clients to acquire the lock afterwards?

Thanks for your answers

share|improve this question

1 Answer

up vote 4 down vote accepted

What happens is that the remote method keeps executing until it is done, and releases the locks when it exits the critical section. Then it attempts to return the results (if any) to the client, and fails because the connection has been broken.

There is no particular hazard here ...

Of course, if the server is using Lock objects rather than primitive locks / mutexes, then it needs to do the lock releases in a finally block to deal with the case where it fails due to some unexpected exception. But this is a different issue. The client crashing won't trigger that scenario.

share|improve this answer
+1: The only downside is that the server doesn't know to give up on the request early because the client has gone away. Another way of looking at it is that the server acts exactly the same regardless. – Peter Lawrey Sep 21 '11 at 15:42

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.