* Removed all Id tags.
[cacao.git] / src / native / jvmti / jvmti.c
index 358b0da167d9c0150bb6bfb0e1e6a65a39d42928..f4d613d389d500551cba4b2537f64341c5cf231a 100644 (file)
@@ -31,8 +31,6 @@
             Samuel Vinson
             Christan Thalinger
    
-   $Id: jvmti.c 5147 2006-07-17 15:11:15Z twisti $
-
 */
 
 
@@ -59,7 +57,7 @@
 #include "vm/jit/asmpart.h"
 #include "vm/class.h"
 #include "vm/classcache.h"
-#include "mm/boehm.h"
+#include "mm/gc-common.h"
 #include "toolbox/logging.h"
 #include "vm/options.h"
 #include "vm/stringlocal.h"
@@ -670,7 +668,7 @@ InterruptThread (jvmtiEnv * env, jthread thread)
 
        CHECK_THREAD_IS_ALIVE(thread);
 
-       threads_interrupt_thread(((java_lang_Thread*)thread)->vmThread);
+       threads_thread_interrupt(((java_lang_Thread *) thread)->vmThread);
 
 
     return JVMTI_ERROR_NONE;