Uploaded image for project: 'JDK'
  1. JDK
  2. JDK-8038450

JDI/JDWP Spec: add MonitorContendedExit event

XMLWordPrintable

    • Icon: Enhancement Enhancement
    • Resolution: Unresolved
    • Icon: P4 P4
    • tbd
    • 9
    • core-svc
    • generic
    • generic


      The following function is expected to be added to the JVMTI for JDK 9:
      void JNICALL MonitorContendedExit(JvmtiEnv* env, JNIEnv* jni_env, jhread thread, jobject monitor);

      It is needed to associate the MonitorContended{Enter/Entered} events with the thread
      that was holding the ObjectMonitor and so, causing the contention.
      It seems reasonable to have a matching event in the JDI/JDWP.

      The package com.sun.jdi.event must be extended with the new interface:

       public interface MonitorContendedExitEvent extends LocatableEvent

      The interface should define the following two methods:

      ThreadReference thread()

      Returns the thread in which this event has occurred.

      Specified by:
          thread in interface LocatableEvent
      Returns:
          a ThreadReference which mirrors the event's thread in the target VM.


      ObjectReference monitor()

      Returns the monitor that was entered.

      Returns:
          an ObjectReference for the monitor.

            Unassigned Unassigned
            sspitsyn Serguei Spitsyn
            Votes:
            0 Vote for this issue
            Watchers:
            1 Start watching this issue

              Created:
              Updated: