Skip to content

Commit 65f0829

Browse files
committedJun 8, 2022
8288068: Javadoc contains spurious reference to CLinker
Reviewed-by: iris
1 parent 130ce7c commit 65f0829

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎src/java.base/share/classes/java/lang/foreign/Linker.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ static Linker nativeLinker() {
212212
*
213213
* @param symbol the address of the target function.
214214
* @param function the function descriptor of the target function.
215-
* @return a downcall method handle. The method handle type is <a href="CLinker.html#downcall-method-handles"><em>inferred</em></a>
215+
* @return a downcall method handle. The method handle type is <a href="Linker.html#downcall-method-handles"><em>inferred</em></a>
216216
* @throws IllegalArgumentException if the provided function descriptor is not supported by this linker.
217217
* or if the symbol is {@link MemoryAddress#NULL}
218218
*/
@@ -235,7 +235,7 @@ default MethodHandle downcallHandle(Addressable symbol, FunctionDescriptor funct
235235
* associated with the {@link MemoryAddress#NULL} address, or a {@link NullPointerException} if that parameter is {@code null}.
236236
*
237237
* @param function the function descriptor of the target function.
238-
* @return a downcall method handle. The method handle type is <a href="CLinker.html#downcall-method-handles"><em>inferred</em></a>
238+
* @return a downcall method handle. The method handle type is <a href="Linker.html#downcall-method-handles"><em>inferred</em></a>
239239
* from the provided function descriptor.
240240
* @throws IllegalArgumentException if the provided function descriptor is not supported by this linker.
241241
*/
@@ -261,7 +261,7 @@ default MethodHandle downcallHandle(Addressable symbol, FunctionDescriptor funct
261261
* @return a zero-length segment whose base address is the address of the upcall stub.
262262
* @throws IllegalArgumentException if the provided function descriptor is not supported by this linker.
263263
* @throws IllegalArgumentException if it is determined that the target method handle can throw an exception, or if the target method handle
264-
* has a type that does not match the upcall stub <a href="CLinker.html#upcall-stubs"><em>inferred type</em></a>.
264+
* has a type that does not match the upcall stub <a href="Linker.html#upcall-stubs"><em>inferred type</em></a>.
265265
* @throws IllegalStateException if {@code session} is not {@linkplain MemorySession#isAlive() alive}.
266266
* @throws WrongThreadException if this method is called from a thread other than the thread
267267
* {@linkplain MemorySession#ownerThread() owning} {@code session}.

‎src/java.base/share/classes/java/lang/foreign/package-info.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
* FunctionDescriptor intCompareDescriptor = FunctionDescriptor.of(ValueLayout.JAVA_INT, ValueLayout.ADDRESS, ValueLayout.ADDRESS);
187187
* MethodHandle intCompareHandle = MethodHandles.lookup().findStatic(IntComparator.class,
188188
* "intCompare",
189-
* CLinker.upcallType(comparFunction));
189+
* Linker.upcallType(comparFunction));
190190
* }
191191
*
192192
* As before, we need to create a {@link java.lang.foreign.FunctionDescriptor} instance, this time describing the signature
@@ -199,7 +199,7 @@
199199
*
200200
* {@snippet lang=java :
201201
* MemorySession session = ...
202-
* Addressable comparFunc = CLinker.nativeLinker().upcallStub(
202+
* Addressable comparFunc = Linker.nativeLinker().upcallStub(
203203
* intCompareHandle, intCompareDescriptor, session);
204204
* );
205205
* }

0 commit comments

Comments
 (0)
Please sign in to comment.