src/share/vm/compiler/directivesParser.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File hotspot Cdiff src/share/vm/compiler/directivesParser.hpp

src/share/vm/compiler/directivesParser.hpp

Print this page
rev 10435 : 8150646: Add support for blocking compiles though whitebox API
Reviewed-by: kvn, ppunegov, simonis, neliasso
Contributed-by: nils.eliasson@oracle.com, volker.simonis@gmail.com

*** 1,7 **** /* ! * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation. --- 1,7 ---- /* ! * Copyright (c) 2015, 2016, Oracle and/or its affiliates. All rights reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. * * This code is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License version 2 only, as * published by the Free Software Foundation.
*** 49,60 **** class DirectivesParser : public JSON { public: static bool has_file(); static bool parse_from_flag(); static bool parse_from_file(const char* filename, outputStream* st); ! static bool parse_string(const char* string, outputStream* st); ! bool install_directives(); private: DirectivesParser(const char* text, outputStream* st); ~DirectivesParser(); --- 49,60 ---- class DirectivesParser : public JSON { public: static bool has_file(); static bool parse_from_flag(); static bool parse_from_file(const char* filename, outputStream* st); ! static int parse_string(const char* string, outputStream* st); ! int install_directives(); private: DirectivesParser(const char* text, outputStream* st); ~DirectivesParser();
src/share/vm/compiler/directivesParser.hpp
Index Unified diffs Context diffs Sdiffs Patch New Old Previous File Next File