Previous | Next | Trail Map | Writing Java Programs | Threads of Control


Java Monitors are Re-entrant

The Java runtime system allows a thread to re-acquire a monitor that it already holds because Java monitors are re-entrant. Re-entrant monitors are important because it eliminates the possibility of a thread deadlocking on a monitor that it already holds. [PENDING: write this]


Previous | Next | Trail Map | Writing Java Programs | Threads of Control