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

Why may this happen? The thing is that monitor object is not null for sure, but still we get this exception quite often:

java.lang.IllegalMonitorStateException: (m=null) Failed to get monitor for (tIdx=60)
        at java.lang.Object.wait(Object.java:474)
        at ...

The code that provokes this is a simple pool solution:

    public Object takeObject() {
        Object obj = internalTakeObject();
        while (obj == null) {
            try {
                available.wait();
            } catch (InterruptedException e) {
                throw new RuntimeException(e);
            }
            obj = internalTakeObject();
        }
        return obj;
    }

    private Object internalTakeObject() {
        Object obj = null;
        synchronized (available) {
            if (available.size() > 0) {
                obj = available.keySet().iterator().next();
                available.remove(obj);
                synchronized (taken) {
                    taken.put(obj, Boolean.valueOf(true));
                }
            }
        }
        return obj;
    }

    public void returnObject(Object obj) {
        synchronized (taken) {
            taken.remove(obj);
        }
        synchronized (available) {
            if (available.size() < size) {
                available.put(obj, Boolean.valueOf(true));
                available.notify();
            }
        }
    }

Am I missing something?

EDIT: The exception happens in available.wait(); line.

share|improve this question
can you tell us what line is 474 in the source code? – flybywire Oct 12 '09 at 10:52
the exception happens in available.wait(); line, but line 474 is from java.lang.Object class. – Andrey Adamovich Oct 12 '09 at 10:55

3 Answers

up vote 19 down vote accepted

See the javadoc for Object.wait.

in particular "The current thread must own this object's monitor." and "[throws] IllegalMonitorStateException - if the current thread is not the owner of the object's monitor." That is, you need to synchronize on the object you are going to call wait on.

so your code should be:

synchronized (available) {
    available.wait();
}
share|improve this answer
Worth to know: Use the same pattern if this exception occurs on available.notify(). – Andreas_D Dec 11 '12 at 11:57

available.wait(); must be in a synchronized(available) section

share|improve this answer

Some example for the object.wait();

/**
 * @param args
 */
public static void main(String[] args) {

    thread1 t1 = new thread1();
    t1.start();

    try {
        Thread.sleep(1000);
        System.out.println("Going to call the thread to wake up.");
        t1.interrupt();
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
}

public static class thread1 extends Thread
{
    public void run ()
    {
        Object mLock = new Object();
        System.out.println("i am now going into wait...");

        synchronized(mLock){
            try
            {
                mLock.wait();
            } catch (Throwable e) { }
        }
        System.out.println("i am free!!!!");

    }
}
share|improve this answer
This example shows interrupt rather than wait() / notify() – tbroberg Nov 16 '12 at 23:32

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.