We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f10b42 commit a7ab5c0Copy full SHA for a7ab5c0
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime/PythonContext.java
@@ -2067,13 +2067,6 @@ protected void perform(ThreadLocalAction.Access access) {
2067
});
2068
}
2069
if (isOurThread) {
2070
- // Thread#stop is not supported on SVM
2071
- if (!ImageInfo.inImageCode()) {
2072
- if (thread.isAlive()) {
2073
- LOGGER.warning("could not join thread " + thread.getName() + ". Trying to stop it.");
2074
- }
2075
- thread.stop();
2076
2077
if (thread.isAlive()) {
2078
LOGGER.warning("Could not stop thread " + thread.getName());
2079
0 commit comments