You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2006/12/08 20:35:50 UTC

svn commit: r484707 - /incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcess.java

Author: mriou
Date: Fri Dec  8 11:35:48 2006
New Revision: 484707

URL: http://svn.apache.org/viewvc?view=rev&rev=484707
Log:
Improving thread safety.

Modified:
    incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcess.java

Modified: incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcess.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcess.java?view=diff&rev=484707&r1=484706&r2=484707
==============================================================================
--- incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcess.java (original)
+++ incubator/ode/trunk/bpel-runtime/src/main/java/org/apache/ode/bpel/engine/BpelProcess.java Fri Dec  8 11:35:48 2006
@@ -79,7 +79,7 @@
 
     DebuggerSupport _debugger;
 
-    OProcess _oprocess;
+    volatile OProcess _oprocess;
 
     final ExpressionLanguageRuntimeRegistry _expLangRuntimeRegistry;