support@vmlens.de
Find Synchronization Bugs

Interpret the Results

The eclipse view shows you:

  1. The class and the field, which was modified by more than one thread without the necessary synchronization. In the example above the filed "endIndex" in the class "java.text,FieldPosition". After the @ the system hash code is shown. The number of thread threads together with the number of occurences is shown inside the brackets. For the example above, 3 different threads modified the field "endIndex" 11 times.
  2. For each access the Thread Name, "Thread-0", together with the thread id, 8 and the method in which the field was modified, "java.textFieldPosition.setEndIndex" is shown.
  3. For each unsynchronized modification the complete stack trace is shown.

 

Top