comparison src/share/vm/utilities/globalDefinitions_sparcWorks.hpp @ 23286:dd9cc155639c

Merge with jdk8u66-b17
author Gilles Duboscq <gilles.m.duboscq@oracle.com>
date Thu, 07 Jan 2016 17:28:46 +0100
parents 17caeb034a63 aefa2e84b424
children
comparison
equal deleted inserted replaced
22786:ac649db7fec4 23286:dd9cc155639c
1 /* 1 /*
2 * Copyright (c) 1997, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 1997, 2015, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
46 # include <stdarg.h> 46 # include <stdarg.h>
47 #ifdef SOLARIS 47 #ifdef SOLARIS
48 # include <ieeefp.h> 48 # include <ieeefp.h>
49 #endif 49 #endif
50 # include <math.h> 50 # include <math.h>
51 #ifdef LINUX
52 #ifndef FP_PZERO
53 // Linux doesn't have positive/negative zero
54 #define FP_PZERO FP_ZERO
55 #endif
56 #ifndef fpclass
57 #define fpclass fpclassify
58 #endif
59 #endif
60 # include <time.h> 51 # include <time.h>
61 # include <fcntl.h> 52 # include <fcntl.h>
62 # include <dlfcn.h> 53 # include <dlfcn.h>
63 # include <pthread.h> 54 # include <pthread.h>
64 #ifdef SOLARIS 55 #ifdef SOLARIS