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

/openjdk7/hotspot/src/share/vm/runtime/
H A Dglobals.hpp270 // use FlagSetting to temporarily change some debug flag
271 // e.g. FlagSetting fs(DebugThisAndThat, true);
273 class FlagSetting { class
277 FlagSetting(bool& fl, bool newValue) { flag = &fl; val = fl; fl = newValue; } function in class:FlagSetting
278 ~FlagSetting() { *flag = val; }

Completed in 67 milliseconds