Searched defs:tc_owner (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/os/bsd/vm/
H A DthreadCritical_bsd.cpp36 static pthread_t tc_owner = 0; variable
48 if (self != tc_owner) {
52 tc_owner = self;
58 assert(tc_owner == pthread_self(), "must have correct owner");
63 tc_owner = 0;
/openjdk7/hotspot/src/os/linux/vm/
H A DthreadCritical_linux.cpp36 static pthread_t tc_owner = 0; variable
48 if (self != tc_owner) {
52 tc_owner = self;
58 assert(tc_owner == pthread_self(), "must have correct owner");
63 tc_owner = 0;

Completed in 29 milliseconds