You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sulong/projects/com.oracle.truffle.llvm.runtime/src/com/oracle/truffle/llvm/runtime/PlatformCapability.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -77,6 +77,7 @@ public void initializeThread(@SuppressWarnings("unused") LLVMContext context,
77
77
// Nothing needs to be done in Sulong for native thread initialization.
78
78
}
79
79
80
+
@SuppressWarnings("deprecation") // GR-41711: we still need Thread.getId() for JDK17 support
Copy file name to clipboardExpand all lines: sulong/projects/com.oracle.truffle.llvm.runtime/src/com/oracle/truffle/llvm/runtime/instruments/trace/LLVMTraceNodeFactory.java
Copy file name to clipboardExpand all lines: sulong/projects/com.oracle.truffle.llvm.runtime/src/com/oracle/truffle/llvm/runtime/nodes/asm/syscall/LLVMAMD64SyscallSetTidAddressNode.java
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
/*
2
-
* Copyright (c) 2017, 2019, Oracle and/or its affiliates.
2
+
* Copyright (c) 2017, 2022, Oracle and/or its affiliates.
3
3
*
4
4
* All rights reserved.
5
5
*
@@ -40,6 +40,7 @@ public final String getName() {
40
40
}
41
41
42
42
@Specialization
43
+
@SuppressWarnings("deprecation") // GR-41711: we still need Thread.getId() for JDK17 support
Copy file name to clipboardExpand all lines: sulong/projects/com.oracle.truffle.llvm.runtime/src/com/oracle/truffle/llvm/runtime/nodes/intrinsics/multithreading/LLVMThreadIntrinsics.java
+3Lines changed: 3 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@ public abstract static class LLVMThreadCreate extends LLVMBuiltin {
54
54
55
55
@Specialization
56
56
@TruffleBoundary
57
+
@SuppressWarnings("deprecation") // GR-41711: we still need Thread.getId() for JDK17 support
Copy file name to clipboardExpand all lines: sulong/projects/com.oracle.truffle.llvm.runtime/src/com/oracle/truffle/llvm/runtime/nodes/intrinsics/multithreading/LLVMThreadStart.java
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -60,6 +60,7 @@ static final class LLVMThreadRunnable implements Runnable {
60
60
}
61
61
62
62
@Override
63
+
@SuppressWarnings("deprecation") // GR-41711: we still need Thread.getId() for JDK17 support
0 commit comments