< prev index next >

src/hotspot/share/utilities/globalDefinitions_gcc.hpp

Print this page
8248238: Adding Windows support to OpenJDK on AArch64

Summary: LP64 vs LLP64 changes to add Windows support

Contributed-by: Monica Beckwith <monica.beckwith@microsoft.com>, Ludovic Henry <luhenry@microsoft.com>
Reviewed-by:
8248238: Adding Windows support to OpenJDK on AArch64

Summary: Adding Windows support for AArch64

Contributed-by: Ludovic Henry <luhenry@microsoft.com>, Monica Beckwith <monica.beckwith@microsoft.com>
Reviewed-by:

@@ -34,10 +34,11 @@
 #include <ctype.h>
 #include <string.h>
 #include <stdarg.h>
 #include <stddef.h>
 #include <stdio.h>
+#include <stdint.h>
 #include <stdlib.h>
 #include <wchar.h>
 
 #include <math.h>
 #include <time.h>

@@ -162,6 +163,9 @@
 
 // Alignment
 //
 #define ATTRIBUTE_ALIGNED(x) __attribute__((aligned(x)))
 
+// Depreciation
+#define DEPRECATED __attribute__ ((deprecated))
+
 #endif // SHARE_UTILITIES_GLOBALDEFINITIONS_GCC_HPP
< prev index next >