Skip to content

Commit 7f7ce4b

Browse files
committed
minor clarification what is meant with jit-compiled code
1 parent 482b8cf commit 7f7ce4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/reference-manual/native-image/MemoryManagement.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ The exact values may depend on the system configuration and the used GC.
4242

4343
* The *maximum Java heap size* defines the upper limit for the size of the whole Java heap.
4444
If the Java heap is full and the GC is unable reclaim sufficient memory for a Java object allocation, the allocation will fail with the `OutOfMemoryError`.
45-
Note: The maximum heap size is only the upper limit for the Java heap and not necessarily the upper limit for the total amount of consumed memory, as Native Image places some data such as thread stacks, just-in-time compiled code, and internal data structures in memory that is separate from the Java heap.
45+
Note: The maximum heap size is only the upper limit for the Java heap and not necessarily the upper limit for the total amount of consumed memory, as Native Image places some data such as thread stacks, just-in-time compiled code (for Truffle runtime compilation), and internal data structures in memory that is separate from the Java heap.
4646
* The *minimum Java heap size* defines how much memory the GC may always assume as reserved for the Java heap, no matter how little of that memory is actually used.
4747
* The *young generation size* determines the amount of Java memory that can be allocated without triggering a garbage collection.
4848

@@ -234,4 +234,4 @@ Which data is printed in detail depends on the used GC.
234234

235235
### Further Reading
236236

237-
* [Memory Configuration for Native Image Build](BuildConfiguration.md#memory-configuration-for-native-image-build)
237+
* [Memory Configuration for Native Image Build](BuildConfiguration.md#memory-configuration-for-native-image-build)

0 commit comments

Comments
 (0)