mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-20 11:04:34 +02:00
8270061: Change parameter order of ResourceHashtable
Reviewed-by: coleenp, stuefe
This commit is contained in:
parent
034788a02c
commit
357947acd8
18 changed files with 49 additions and 73 deletions
|
@ -2227,8 +2227,10 @@ void nmethod::check_all_dependencies(DepChange& changes) {
|
|||
// Turn off dependency tracing while actually testing dependencies.
|
||||
NOT_PRODUCT( FlagSetting fs(TraceDependencies, false) );
|
||||
|
||||
typedef ResourceHashtable<DependencySignature, int, &DependencySignature::hash,
|
||||
&DependencySignature::equals, 11027> DepTable;
|
||||
typedef ResourceHashtable<DependencySignature, int, 11027,
|
||||
ResourceObj::RESOURCE_AREA, mtInternal,
|
||||
&DependencySignature::hash,
|
||||
&DependencySignature::equals> DepTable;
|
||||
|
||||
DepTable* table = new DepTable();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue