File tree Expand file tree Collapse file tree
graalpython/com.oracle.graal.python/src/com/oracle/graal/python/runtime Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2683,7 +2683,7 @@ public void initializeMultiThreading() {
26832683 handler .activateGIL ();
26842684 }
26852685
2686- public synchronized void attachThread (Thread thread , ContextThreadLocal <PythonThreadState > threadState ) {
2686+ public void attachThread (Thread thread , ContextThreadLocal <PythonThreadState > threadState ) {
26872687 CompilerAsserts .neverPartOfCompilation ();
26882688 PythonThreadState pythonThreadState = threadState .get (thread );
26892689 threadStateMapping .put (thread , pythonThreadState );
@@ -2723,7 +2723,7 @@ public void initializeNativeThreadState(PythonThreadState pythonThreadState) {
27232723 }
27242724 }
27252725
2726- public synchronized void disposeThread (Thread thread , boolean canRunGuestCode ) {
2726+ public void disposeThread (Thread thread , boolean canRunGuestCode ) {
27272727 CompilerAsserts .neverPartOfCompilation ();
27282728 // check if there is a live sentinel lock
27292729 PythonThreadState ts = threadStateMapping .get (thread );
You can’t perform that action at this time.
0 commit comments