src/share/tools/launcher/jli_util.h

Thu, 02 Dec 2010 05:45:54 -0800

author
sla
date
Thu, 02 Dec 2010 05:45:54 -0800
changeset 2327
cb2d0a362639
permissions
-rw-r--r--

6981484: Update development launcher
Summary: Add new development launcher called hotspot(.exe)
Reviewed-by: coleenp

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 _JLI_UTIL_H
sla@2327 26 #define _JLI_UTIL_H
sla@2327 27
sla@2327 28 #include <stdlib.h>
sla@2327 29
sla@2327 30 void *JLI_MemAlloc(size_t size);
sla@2327 31 void *JLI_MemRealloc(void *ptr, size_t size);
sla@2327 32 char *JLI_StringDup(const char *s1);
sla@2327 33 void JLI_MemFree(void *ptr);
sla@2327 34
sla@2327 35 #endif /* _JLI_UTIL_H */

mercurial