You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Don't call methods on debugger thread. This is important when dealing with data protected by locks that can't be accessed by the debugged when locked on the Java thread.....
"main" prio=10 tid=0x00007fd230008800 nid=0x615c at breakpoint[0x00007fd2385c1000]
java.lang.Thread.State: RUNNABLE
at com.mysql.jdbc.ResultSetImpl.getInstance(ResultSetImpl.java:374)
at com.mysql.jdbc.MysqlIO.buildResultSetWithRows(MysqlIO.java:3220)
at com.mysql.jdbc.MysqlIO.getResultSet(MysqlIO.java:500)
at com.mysql.jdbc.MysqlIO.readResultsForQueryOrUpdate(MysqlIO.java:3198)
at com.mysql.jdbc.MysqlIO.readAllResults(MysqlIO.java:2366)
at com.mysql.jdbc.ServerPreparedStatement.serverExecute(ServerPreparedStatement.java:1500)
- locked <0x00000000d866b158> (a com.mysql.jdbc.JDBC4Connection)
at com.mysql.jdbc.ServerPreparedStatement.executeInternal(ServerPreparedStatement.java:857)
- locked <0x00000000d866b158> (a com.mysql.jdbc.JDBC4Connection)
at com.mysql.jdbc.PreparedStatement.executeQuery(PreparedStatement.java:2322)
- locked <0x00000000d866b158> (a com.mysql.jdbc.JDBC4Connection)
at testsuite.regression.Bug67225.testBug67225(Bug67225.java:30)
"Yellow Tree Command Interpreter" daemon prio=10 tid=0x00007fd230116000 nid=0x6165 waiting for monitor entry [0x00007fd21faf6000]
java.lang.Thread.State: BLOCKED (on object monitor)
at com.mysql.jdbc.ServerPreparedStatement.asSql(ServerPreparedStatement.java:471)
- waiting to lock <0x00000000d866b158> (a com.mysql.jdbc.JDBC4Connection)
at com.mysql.jdbc.PreparedStatement.asSql(PreparedStatement.java:1051)
at com.mysql.jdbc.ServerPreparedStatement.toString(ServerPreparedStatement.java:2825)
The text was updated successfully, but these errors were encountered:
move event queue to separate module
disable event processor thread for now
handle breakpoints directly on thread
pass commands to suspended thread if "debugging"
Don't call methods on debugger thread. This is important when dealing with data protected by locks that can't be accessed by the debugged when locked on the Java thread.....
The text was updated successfully, but these errors were encountered: