mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 12:04:39 +02:00
8163146: Remove os::check_heap on Windows
Reviewed-by: gtriantafill, coleenp, stuefe
This commit is contained in:
parent
09b2ad770b
commit
f2dafaefc7
12 changed files with 4 additions and 113 deletions
|
@ -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();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue