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

/openjdk7/hotspot/src/share/vm/gc_implementation/concurrentMarkSweep/
H A DconcurrentMarkSweepThread.hpp71 static int _CMS_flag; member in class:ConcurrentMarkSweepThread
73 static bool CMS_flag_is_set(int b) { return (_CMS_flag & b) != 0; }
74 static bool set_CMS_flag(int b) { return (_CMS_flag |= b) != 0; }
75 static bool clear_CMS_flag(int b) { return (_CMS_flag &= ~b) != 0; }
H A DconcurrentMarkSweepThread.cpp49 int ConcurrentMarkSweepThread::_CMS_flag = CMS_nil; member in class:ConcurrentMarkSweepThread

Completed in 41 milliseconds