src/share/tools/launcher/wildcard.h

Mon, 06 May 2013 13:53:13 -0700

author
twisti
date
Mon, 06 May 2013 13:53:13 -0700
changeset 5108
f0bc60565ba8
parent 2327
cb2d0a362639
permissions
-rw-r--r--

7196277: JSR 292: Two jck/runtime tests crash on java.lang.invoke.MethodHandle.invokeExact
Reviewed-by: jrose, kvn

sla@2327 1 /*
sla@2327 2 * Copyright (c) 1999, 2010, Oracle and/or its affiliates. All rights reserved.
sla@2327 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
sla@2327 4 *
sla@2327 5 * This code is free software; you can redistribute it and/or modify it
sla@2327 6 * under the terms of the GNU General Public License version 2 only, as
sla@2327 7 * published by the Free Software Foundation.
sla@2327 8 *
sla@2327 9 * This code is distributed in the hope that it will be useful, but WITHOUT
sla@2327 10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
sla@2327 11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
sla@2327 12 * version 2 for more details (a copy is included in the LICENSE file that
sla@2327 13 * accompanied this code).
sla@2327 14 *
sla@2327 15 * You should have received a copy of the GNU General Public License version
sla@2327 16 * 2 along with this work; if not, write to the Free Software Foundation,
sla@2327 17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
sla@2327 18 *
sla@2327 19 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
sla@2327 20 * or visit www.oracle.com if you need additional information or have any
sla@2327 21 * questions.
sla@2327 22 *
sla@2327 23 */
sla@2327 24
sla@2327 25 #ifndef WILDCARD_H_
sla@2327 26 #define WILDCARD_H_
sla@2327 27
sla@2327 28 #ifdef EXPAND_CLASSPATH_WILDCARDS
sla@2327 29 const char *JLI_WildcardExpandClasspath(const char *classpath);
sla@2327 30 #else
sla@2327 31 #define JLI_WildcardExpandClasspath(s) (s)
sla@2327 32 #endif
sla@2327 33
sla@2327 34 #endif /* include guard */

mercurial