Skip to content

Commit 04012c4

Browse files
committedDec 6, 2022
8298111: Cleanups after UseMallocOnly removal
Reviewed-by: coleenp
1 parent ee9ba74 commit 04012c4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed
 

‎src/hotspot/share/memory/arena.hpp

-5
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,6 @@ class Arena : public CHeapObjBase {
101101
void* grow(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM);
102102
size_t _size_in_bytes; // Size of arena (used for native memory tracking)
103103

104-
debug_only(void* malloc(size_t size);)
105-
106104
void* internal_amalloc(size_t x, AllocFailType alloc_failmode = AllocFailStrategy::EXIT_OOM) {
107105
assert(is_aligned(x, BytesPerWord), "misaligned size");
108106
if (pointer_delta(_max, _hwm, 1) >= x) {
@@ -173,9 +171,6 @@ class Arena : public CHeapObjBase {
173171
size_t size_in_bytes() const { return _size_in_bytes; };
174172
void set_size_in_bytes(size_t size);
175173

176-
static void free_malloced_objects(Chunk* chunk, char* hwm, char* max, char* hwm2) PRODUCT_RETURN;
177-
static void free_all(char** start, char** end) PRODUCT_RETURN;
178-
179174
private:
180175
// Reset this Arena to empty, access will trigger grow if necessary
181176
void reset(void) {

0 commit comments

Comments
 (0)
Please sign in to comment.