--- a/hotspot/src/os/aix/vm/porting_aix.cpp Fri May 09 17:06:52 2014 +0200
+++ b/hotspot/src/os/aix/vm/porting_aix.cpp Mon May 12 09:59:56 2014 -0400
@@ -23,6 +23,7 @@
*/
#include "asm/assembler.hpp"
+#include "memory/allocation.hpp"
#include "loadlib_aix.hpp"
#include "porting_aix.hpp"
#include "utilities/debug.hpp"
@@ -67,7 +68,7 @@
// a primitive string map. Should this turn out to be a performance
// problem, a better hashmap has to be used.
class fixed_strings {
- struct node {
+ struct node : public CHeapObj<mtInternal> {
char* v;
node* next;
};