We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d54dfbe commit 6b422b1Copy full SHA for 6b422b1
src/main/java/org/cprover/CProver.java
@@ -260,4 +260,12 @@ public static void notModelled()
260
{
261
assume(false);
262
}
263
+
264
+ /**
265
+ * Retrieves the current locking count for 'object'.
266
+ */
267
+ public static int getMonitorCount(Object object)
268
+ {
269
+ return object.cproverMonitorCount;
270
+ }
271
0 commit comments