hotspot/src/share/vm/runtime/arguments_ext.hpp
changeset 47103 a993ec29ec75
parent 29696 01571dfab5be
equal deleted inserted replaced
47098:e704f55561c3 47103:a993ec29ec75
     1 /*
     1 /*
     2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
     2  * Copyright (c) 2014, 2017, 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.
    34   // The argument processing extension. Returns true if there is
    34   // The argument processing extension. Returns true if there is
    35   // no additional parsing needed in Arguments::parse() for the option.
    35   // no additional parsing needed in Arguments::parse() for the option.
    36   // Otherwise returns false.
    36   // Otherwise returns false.
    37   static inline bool process_options(const JavaVMOption *option) { return false; }
    37   static inline bool process_options(const JavaVMOption *option) { return false; }
    38   static inline void report_unsupported_options() { }
    38   static inline void report_unsupported_options() { }
       
    39   static inline bool using_AppCDS() { return false; }
    39 };
    40 };
    40 
    41 
    41 void ArgumentsExt::set_gc_specific_flags() {
    42 void ArgumentsExt::set_gc_specific_flags() {
    42   Arguments::set_gc_specific_flags();
    43   Arguments::set_gc_specific_flags();
    43 }
    44 }