OpenJDK / portola / portola
changeset 38308:ee489b336cd9
8156929: [aix] Add missing includes
Reviewed-by: coleenp, dholmes
author | goetz |
---|---|
date | Tue, 17 May 2016 03:26:07 -0400 |
parents | 1d0016127806 |
children | 9b8e9c373740 |
files | hotspot/src/share/vm/gc/g1/g1HeapSizingPolicy_ext.cpp hotspot/src/share/vm/runtime/mutex.cpp |
diffstat | 2 files changed, 2 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/hotspot/src/share/vm/gc/g1/g1HeapSizingPolicy_ext.cpp Sat May 14 15:34:30 2016 -0700 +++ b/hotspot/src/share/vm/gc/g1/g1HeapSizingPolicy_ext.cpp Tue May 17 03:26:07 2016 -0400 @@ -24,6 +24,7 @@ #include "precompiled.hpp" #include "gc/g1/g1HeapSizingPolicy.hpp" +#include "memory/allocation.inline.hpp" G1HeapSizingPolicy* G1HeapSizingPolicy::create(const G1CollectedHeap* g1, const G1Analytics* analytics) { return new G1HeapSizingPolicy(g1, analytics);
--- a/hotspot/src/share/vm/runtime/mutex.cpp Sat May 14 15:34:30 2016 -0700 +++ b/hotspot/src/share/vm/runtime/mutex.cpp Tue May 17 03:26:07 2016 -0400 @@ -24,6 +24,7 @@ #include "precompiled.hpp" #include "runtime/atomic.inline.hpp" +#include "runtime/interfaceSupport.hpp" #include "runtime/mutex.hpp" #include "runtime/orderAccess.inline.hpp" #include "runtime/osThread.hpp"