1
1
/*
2
- * Copyright (c) 2014, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2014, 2025 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -53,7 +53,7 @@ static void add(size_t alloc_size) {
53
53
if (!JfrRecorder::is_created ()) {
54
54
const jlong total_allocated = atomic_add_jlong ((jlong)alloc_size, &_allocated_bytes);
55
55
const jlong current_live_set = atomic_add_jlong ((jlong)alloc_size, &_live_set_bytes);
56
- log_trace (jfr, system )(" Allocation: [" SIZE_FORMAT " ] bytes" , alloc_size);
56
+ log_trace (jfr, system )(" Allocation: [%zu ] bytes" , alloc_size);
57
57
log_trace (jfr, system )(" Total alloc [" JLONG_FORMAT " ] bytes" , total_allocated);
58
58
log_trace (jfr, system )(" Liveset: [" JLONG_FORMAT " ] bytes" , current_live_set);
59
59
}
@@ -63,7 +63,7 @@ static void subtract(size_t dealloc_size) {
63
63
if (!JfrRecorder::is_created ()) {
64
64
const jlong total_deallocated = atomic_add_jlong ((jlong)dealloc_size, &_deallocated_bytes);
65
65
const jlong current_live_set = atomic_add_jlong (((jlong)dealloc_size * -1 ), &_live_set_bytes);
66
- log_trace (jfr, system )(" Deallocation: [" SIZE_FORMAT " ] bytes" , dealloc_size);
66
+ log_trace (jfr, system )(" Deallocation: [%zu ] bytes" , dealloc_size);
67
67
log_trace (jfr, system )(" Total dealloc [" JLONG_FORMAT " ] bytes" , total_deallocated);
68
68
log_trace (jfr, system )(" Liveset: [" JLONG_FORMAT " ] bytes" , current_live_set);
69
69
}
@@ -77,7 +77,7 @@ static void hook_memory_deallocation(size_t dealloc_size) {
77
77
static void hook_memory_allocation (const char * allocation, size_t alloc_size) {
78
78
if (nullptr == allocation) {
79
79
if (!JfrRecorder::is_created ()) {
80
- log_warning (jfr, system )(" Memory allocation failed for size [" SIZE_FORMAT " ] bytes" , alloc_size);
80
+ log_warning (jfr, system )(" Memory allocation failed for size [%zu ] bytes" , alloc_size);
81
81
return ;
82
82
} else {
83
83
// after critical startup, fail as by default
0 commit comments