src/share/vm/classfile/classFileParser.hpp

changeset 3682
fc9d8850ab8b
parent 3373
cd5d8cafcc84
child 3686
749b1464aa81
     1.1 --- a/src/share/vm/classfile/classFileParser.hpp	Thu Mar 15 13:37:13 2012 +0100
     1.2 +++ b/src/share/vm/classfile/classFileParser.hpp	Fri Mar 23 11:16:05 2012 -0400
     1.3 @@ -1,5 +1,5 @@
     1.4  /*
     1.5 - * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright (c) 1997, 2012, Oracle and/or its affiliates. All rights reserved.
     1.7   * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8   *
     1.9   * This code is free software; you can redistribute it and/or modify it
    1.10 @@ -68,9 +68,10 @@
    1.11    void set_stream(ClassFileStream* st)             { _stream = st; }
    1.12  
    1.13    // Constant pool parsing
    1.14 -  void parse_constant_pool_entries(constantPoolHandle cp, int length, TRAPS);
    1.15 +  void parse_constant_pool_entries(Handle class_loader,
    1.16 +                                   constantPoolHandle cp, int length, TRAPS);
    1.17  
    1.18 -  constantPoolHandle parse_constant_pool(TRAPS);
    1.19 +  constantPoolHandle parse_constant_pool(Handle class_loader, TRAPS);
    1.20  
    1.21    // Interface parsing
    1.22    objArrayHandle parse_interfaces(constantPoolHandle cp,

mercurial