comparison src/share/vm/runtime/thread.hpp @ 5928:541c4a5e7b88

7150390: JFR test crashed on assert(_jni_lock_count == count) failed: must be equal Reviewed-by: dholmes, minqi, kvn, coleenp
author never
date Tue, 06 Mar 2012 16:32:23 -0800
parents 0382d2b469b2
children d2a62e0f25eb
comparison
equal deleted inserted replaced
5927:b40ac3579043 5928:541c4a5e7b88
266 int omFreeCount; // length of omFreeList 266 int omFreeCount; // length of omFreeList
267 int omFreeProvision; // reload chunk size 267 int omFreeProvision; // reload chunk size
268 ObjectMonitor* omInUseList; // SLL to track monitors in circulation 268 ObjectMonitor* omInUseList; // SLL to track monitors in circulation
269 int omInUseCount; // length of omInUseList 269 int omInUseCount; // length of omInUseList
270 270
271 #ifdef ASSERT
272 private:
273 bool _visited_for_critical_count;
274
275 public:
276 void set_visited_for_critical_count(bool z) { _visited_for_critical_count = z; }
277 bool was_visited_for_critical_count() const { return _visited_for_critical_count; }
278 #endif
279
271 public: 280 public:
272 enum { 281 enum {
273 is_definitely_current_thread = true 282 is_definitely_current_thread = true
274 }; 283 };
275 284