hotspot/src/share/vm/runtime/commandLineFlagConstraintList.hpp
changeset 37208 aaf76eb8cfd4
parent 33222 e0a340f4ab6e
child 37491 edf4cc53f5a3
--- a/hotspot/src/share/vm/runtime/commandLineFlagConstraintList.hpp	Wed Mar 30 17:25:32 2016 +0300
+++ b/hotspot/src/share/vm/runtime/commandLineFlagConstraintList.hpp	Wed Mar 30 14:44:27 2016 -0500
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
+ * 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
@@ -89,6 +89,7 @@
   static void init();
   static int length() { return (_constraints != NULL) ? _constraints->length() : 0; }
   static CommandLineFlagConstraint* at(int i) { return (_constraints != NULL) ? _constraints->at(i) : NULL; }
+  static CommandLineFlagConstraint* find(const char* name);
   static CommandLineFlagConstraint* find_if_needs_check(const char* name);
   static void add(CommandLineFlagConstraint* constraint) { _constraints->append(constraint); }
   // True if 'AfterErgo' or later constraint functions are validated.