Searched refs:tc_count (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A DthreadCritical_bsd.cpp38 static int tc_count = 0; variable
51 assert(tc_count == 0, "Lock acquired with illegal reentry count.");
54 tc_count++;
59 assert(tc_count > 0, "must have correct count");
61 tc_count--;
62 if (tc_count == 0) {
/openjdk7/hotspot/src/os/linux/vm/
H A DthreadCritical_linux.cpp38 static int tc_count = 0; variable
51 assert(tc_count == 0, "Lock acquired with illegal reentry count.");
54 tc_count++;
59 assert(tc_count > 0, "must have correct count");
61 tc_count--;
62 if (tc_count == 0) {

Completed in 168 milliseconds