8163146: Remove os::check_heap on Windows

Reviewed-by: gtriantafill, coleenp, stuefe
This commit is contained in:
Christian Tornqvist 2016-08-23 21:49:33 -04:00
parent 09b2ad770b
commit f2dafaefc7
12 changed files with 4 additions and 113 deletions

View file

@ -1129,8 +1129,6 @@ void Universe::initialize_verify_flags() {
verify_flags |= Verify_MetaspaceAux;
} else if (strcmp(token, "jni_handles") == 0) {
verify_flags |= Verify_JNIHandles;
} else if (strcmp(token, "c-heap") == 0) {
verify_flags |= Verify_CHeap;
} else if (strcmp(token, "codecache_oops") == 0) {
verify_flags |= Verify_CodeCacheOops;
} else {
@ -1208,10 +1206,6 @@ void Universe::verify(VerifyOption option, const char* prefix) {
log_debug(gc, verify)("JNIHandles");
JNIHandles::verify();
}
if (should_verify_subset(Verify_CHeap)) {
log_debug(gc, verify)("C-heap");
os::check_heap();
}
if (should_verify_subset(Verify_CodeCacheOops)) {
log_debug(gc, verify)("CodeCache Oops");
CodeCache::verify_oops();