comparison test/testlibrary/whitebox/sun/hotspot/WhiteBox.java @ 10157:f32b6c267d2e

8012015: Use PROT_NONE when reserving memory Summary: Reserved memory had PROT_READ+PROT_WRITE access on Linux/bsd, now changed to PROT_NONE. Reviewed-by: dholmes, ctornqvi
author mikael
date Mon, 29 Apr 2013 11:03:49 -0700
parents 01d5f04e64dc
children d17700c82d7d
comparison
equal deleted inserted replaced
10156:c53e49efe6a8 10157:f32b6c267d2e
109 public native void clearMethodState(Executable method); 109 public native void clearMethodState(Executable method);
110 110
111 // Intered strings 111 // Intered strings
112 public native boolean isInStringTable(String str); 112 public native boolean isInStringTable(String str);
113 113
114 // Memory
115 public native long reserveMemory(long size);
116
114 // force Full GC 117 // force Full GC
115 public native void fullGC(); 118 public native void fullGC();
116 } 119 }