You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by va...@apache.org on 2008/03/13 12:57:40 UTC

svn commit: r636734 - in /harmony/enhanced/drlvm/trunk/vm: include/open/ vmcore/include/ vmcore/src/thread/ vmcore/src/thread/helpers/ vmcore/src/util/em64t/base/ vmcore/src/util/ia32/base/

Author: varlax
Date: Thu Mar 13 04:57:38 2008
New Revision: 636734

URL: http://svn.apache.org/viewvc?rev=636734&view=rev
Log:
Move thread_helpers.h out of general include dir.

Added:
    harmony/enhanced/drlvm/trunk/vm/vmcore/include/thread_helpers.h
      - copied unchanged from r635806, harmony/enhanced/drlvm/trunk/vm/include/open/thread_helpers.h
Removed:
    harmony/enhanced/drlvm/trunk/vm/include/open/thread_helpers.h
Modified:
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_em64t.cpp
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ia32.cpp
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ipf.cpp
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/thread_manager.cpp
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/em64t/base/jit_lock_rt_support_em64t.cpp
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_lock_rt_support_ia32.cpp
    harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_runtime_support_ia32.cpp

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_em64t.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_em64t.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_em64t.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_em64t.cpp Thu Mar 13 04:57:38 2008
@@ -30,7 +30,7 @@
  */
 
 #include <open/hythread_ext.h>
-#include <open/thread_helpers.h>
+#include <thread_helpers.h>
 #include "open/jthread.h"
 #include "object_handles.h"
 #include "port_malloc.h"

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ia32.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ia32.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ia32.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ia32.cpp Thu Mar 13 04:57:38 2008
@@ -25,7 +25,7 @@
  */
 
 #include <open/hythread_ext.h>
-#include <open/thread_helpers.h>
+#include <thread_helpers.h>
 #include "open/jthread.h"
 #include "object_handles.h"
 #include "port_malloc.h"

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ipf.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ipf.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ipf.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/helpers/thread_helpers_ipf.cpp Thu Mar 13 04:57:38 2008
@@ -21,7 +21,7 @@
  */
 
 #include <open/hythread_ext.h>
-#include <open/thread_helpers.h>
+#include <thread_helpers.h>
 #include "open/jthread.h"
 
 #include <assert.h>

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/thread_manager.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/thread_manager.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/thread_manager.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/thread/thread_manager.cpp Thu Mar 13 04:57:38 2008
@@ -47,7 +47,7 @@
 #include "lock_manager.h"
 #include "thread_manager.h"
 #include "thread_generic.h"
-#include "open/thread_helpers.h"
+#include "thread_helpers.h"
 #include "open/jthread.h"
 
 #include "vm_threads.h"

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/em64t/base/jit_lock_rt_support_em64t.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/em64t/base/jit_lock_rt_support_em64t.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/em64t/base/jit_lock_rt_support_em64t.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/em64t/base/jit_lock_rt_support_em64t.cpp Thu Mar 13 04:57:38 2008
@@ -27,7 +27,7 @@
 
 #include "open/hythread_ext.h"
 #include "open/jthread.h"
-#include "open/thread_helpers.h"
+#include "thread_helpers.h"
 
 #include "open/vm_util.h"
 #include "encoder.h"

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_lock_rt_support_ia32.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_lock_rt_support_ia32.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_lock_rt_support_ia32.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_lock_rt_support_ia32.cpp Thu Mar 13 04:57:38 2008
@@ -20,7 +20,7 @@
  */  
 
 #include <open/hythread_ext.h>
-#include <open/thread_helpers.h>
+#include <thread_helpers.h>
 
 #include "platform_lowlevel.h"
 

Modified: harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_runtime_support_ia32.cpp
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_runtime_support_ia32.cpp?rev=636734&r1=636733&r2=636734&view=diff
==============================================================================
--- harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_runtime_support_ia32.cpp (original)
+++ harmony/enhanced/drlvm/trunk/vm/vmcore/src/util/ia32/base/jit_runtime_support_ia32.cpp Thu Mar 13 04:57:38 2008
@@ -37,7 +37,7 @@
 #include "mon_enter_exit.h"
 #include "vm_threads.h"
 
-#include "open/thread_helpers.h"
+#include "thread_helpers.h"
 
 #include "vm_arrays.h"
 #include "vm_strings.h"