Skip to content

Commit 96f5699

Browse files
committedJan 16, 2020
8237370: Javadoc of memory access API still refers to old MemoryAddress::offset method
Reviewed-by: chegar
1 parent af5ff9a commit 96f5699

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎src/jdk.incubator.foreign/share/classes/jdk/incubator/foreign/MemoryAddress.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,10 +97,10 @@ public interface MemoryAddress {
9797

9898
/**
9999
* Perform bulk copy from source address to target address. More specifically, the bytes at addresses {@code src}
100-
* through {@code src.offset(bytes - 1)} are copied into addresses {@code dst} through {@code dst.offset(bytes - 1)}.
100+
* through {@code src.addOffset(bytes - 1)} are copied into addresses {@code dst} through {@code dst.addOffset(bytes - 1)}.
101101
* If the source and address ranges overlap, then the copying is performed as if the bytes at addresses {@code src}
102-
* through {@code src.offset(bytes - 1)} were first copied into a temporary segment with size {@code bytes},
103-
* and then the contents of the temporary segment were copied into the bytes at addresses {@code dst} through {@code dst.offset(bytes - 1)}.
102+
* through {@code src.addOffset(bytes - 1)} were first copied into a temporary segment with size {@code bytes},
103+
* and then the contents of the temporary segment were copied into the bytes at addresses {@code dst} through {@code dst.addOffset(bytes - 1)}.
104104
* @param src the source address.
105105
* @param dst the target address.
106106
* @param bytes the number of bytes to be copied.

‎src/jdk.incubator.foreign/share/classes/jdk/incubator/foreign/MemoryLayout.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
*
111111
* We can obtain the offset of the member layout named <code>value</code> from <code>seq</code>, as follows:
112112
* <blockquote><pre>{@code
113-
long valueOffset = seq.offset(PathElement.sequenceElement(), PathElement.groupElement("value"));
113+
long valueOffset = seq.addOffset(PathElement.sequenceElement(), PathElement.groupElement("value"));
114114
* }</pre></blockquote>
115115
*
116116
* Similarly, we can select the member layout named {@code value}, as follows:

‎src/jdk.incubator.foreign/share/classes/jdk/incubator/foreign/package-info.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
try (MemorySegment segment = MemorySegment.allocateNative(10 * 4)) {
3434
MemoryAddress base = segment.baseAddress();
3535
for (long i = 0 ; i < 10 ; i++) {
36-
intHandle.set(base.offset(i * 4), (int)i);
36+
intHandle.set(base.addOffset(i * 4), (int)i);
3737
}
3838
}
3939
* }</pre>

0 commit comments

Comments
 (0)
Please sign in to comment.