hotspot/src/os/linux/launcher/java_md.h
author apetrusenko
Fri, 06 Feb 2009 01:38:50 +0300
changeset 2009 4adf43957a1b
parent 1 489c9b5090e2
child 2131 98f9cef66a34
permissions -rw-r--r--
6484959: G1: introduce survivor spaces 6797754: G1: combined bugfix Summary: Implemented a policy to control G1 survivor space parameters. Reviewed-by: tonyp, iveresov
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
 * Copyright 1999-2005 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 * CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 * have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
 * Gamma (Hotspot internal engineering test) launcher based on 1.6.0-b28 JDK,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
 * search "GAMMA" for gamma specific changes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
#ifndef JAVA_MD_H
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#define JAVA_MD_H
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
#include <limits.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#include <unistd.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
#include <sys/param.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#ifndef GAMMA
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#include "manifest_info.h"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#define PATH_SEPARATOR          ':'
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
#define FILESEP                 "/"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
#define FILE_SEPARATOR          '/'
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
#ifndef MAXNAMELEN
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
#define MAXNAMELEN              PATH_MAX
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
#ifdef JAVA_ARGS
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
 * ApplicationHome is prepended to each of these entries; the resulting
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
 * strings are concatenated (seperated by PATH_SEPARATOR) and used as the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
 * value of -cp option to the launcher.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
#ifndef APP_CLASSPATH
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
#define APP_CLASSPATH        { "/lib/tools.jar", "/classes" }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
#ifdef HAVE_GETHRTIME
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
 * Support for doing cheap, accurate interval timing.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
#include <sys/time.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
#define CounterGet()              (gethrtime()/1000)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
#define Counter2Micros(counts)    (counts)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
#define CounterGet()              (0)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
#define Counter2Micros(counts)    (1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
#endif /* HAVE_GETHRTIME */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
 * Function prototypes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
#ifndef GAMMA
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
char *LocateJRE(manifest_info* info);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
void ExecJRE(char *jre, char **argv);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
#endif
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
int UnsetEnv(char *name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#endif