comparison src/share/vm/classfile/classLoaderData.hpp @ 14378:48314d596a04

8027146: Class loading verification failure if GC occurs in Universe::flush_dependents_on Summary: Remove search in system dictionary and hacks, replace with verifying in CLD::_klasses list. Reviewed-by: dcubed, acorn
author coleenp
date Sat, 15 Feb 2014 13:03:38 -0500
parents ce86c36b8921
children f460c6926af7 7384f6a12fc1
comparison
equal deleted inserted replaced
14377:cbdbdd6577f6 14378:48314d596a04
1 /* 1 /*
2 * Copyright (c) 2012, 2013, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2012, 2014, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
258 const char* loader_name(); 258 const char* loader_name();
259 259
260 jobject add_handle(Handle h); 260 jobject add_handle(Handle h);
261 void add_class(Klass* k); 261 void add_class(Klass* k);
262 void remove_class(Klass* k); 262 void remove_class(Klass* k);
263 bool contains_klass(Klass* k);
263 void record_dependency(Klass* to, TRAPS); 264 void record_dependency(Klass* to, TRAPS);
264 void init_dependencies(TRAPS); 265 void init_dependencies(TRAPS);
265 266
266 void add_to_deallocate_list(Metadata* m); 267 void add_to_deallocate_list(Metadata* m);
267 268