src/cpu/sparc/vm/jni_sparc.h

Wed, 15 May 2013 11:05:09 +0200

author
tschatzl
date
Wed, 15 May 2013 11:05:09 +0200
changeset 5119
12f651e29f6b
parent 5063
58bb870a0cbd
child 6198
55fb97c4c58d
permissions
-rw-r--r--

6843347: Boundary values in some public GC options cause crashes
Summary: Setting some public integer options to specific values causes crashes or undefined GC behavior. This patchset adds the necessary argument checking for these options.
Reviewed-by: jmasa, brutisso

duke@435 1 /*
trims@2708 2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved.
duke@435 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
duke@435 4 *
duke@435 5 * This code is free software; you can redistribute it and/or modify it
duke@435 6 * under the terms of the GNU General Public License version 2 only, as
trims@1907 7 * published by the Free Software Foundation. Oracle designates this
duke@435 8 * particular file as subject to the "Classpath" exception as provided
trims@1907 9 * by Oracle in the LICENSE file that accompanied this code.
duke@435 10 *
duke@435 11 * This code is distributed in the hope that it will be useful, but WITHOUT
duke@435 12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
duke@435 13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
duke@435 14 * version 2 for more details (a copy is included in the LICENSE file that
duke@435 15 * accompanied this code).
duke@435 16 *
duke@435 17 * You should have received a copy of the GNU General Public License version
duke@435 18 * 2 along with this work; if not, write to the Free Software Foundation,
duke@435 19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
duke@435 20 *
trims@1907 21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
trims@1907 22 * or visit www.oracle.com if you need additional information or have any
trims@1907 23 * questions.
duke@435 24 */
duke@435 25
emc@5063 26 // Note: please do not change these without also changing jni_md.h in the JDK
emc@5063 27 // repository
emc@5063 28 #ifndef __has_attribute
emc@5063 29 #define __has_attribute(x) 0
emc@5063 30 #endif
emc@5063 31 #if (defined(__GNUC__) && ((__GNUC__ > 4) || (__GNUC__ == 4) && (__GNUC_MINOR__ > 2))) || __has_attribute(visibility)
coleenp@2507 32 #define JNIEXPORT __attribute__((visibility("default")))
coleenp@2507 33 #define JNIIMPORT __attribute__((visibility("default")))
coleenp@2507 34 #else
coleenp@2507 35 #define JNIEXPORT
coleenp@2507 36 #define JNIIMPORT
coleenp@2507 37 #endif
duke@435 38 #define JNICALL
duke@435 39
duke@435 40 typedef int jint;
xlu@948 41
xlu@948 42 #ifdef _LP64
xlu@948 43 typedef long jlong;
xlu@948 44 #else
xlu@948 45 typedef long long jlong;
xlu@948 46 #endif
xlu@948 47
duke@435 48 typedef signed char jbyte;

mercurial