* src/native/vm/Makefile.am
[cacao.git] / src / native / vm / gnu / java_util_concurrent_atomic_AtomicLong.c
index ac9aa388258dc7331d64d061db02d88cb8e05a18..7105e65f8f61a6d735d8fbf2cfdd6c9201b33f1e 100644 (file)
@@ -32,7 +32,7 @@
 #include "native/jni.h"
 #include "native/native.h"
 
-#include "native/vm/java_util_concurrent_atomic_AtomicLong.h"
+#include "native/include/java_util_concurrent_atomic_AtomicLong.h"
 
 #include "vmcore/utf8.h"
 
@@ -40,7 +40,7 @@
 /* native methods implemented by this file ************************************/
 
 static JNINativeMethod methods[] = {
-       { "VMSupportsCS8", "()Z", (void *) (intptr_t) &_Jv_java_util_concurrent_atomic_AtomicLong_VMSupportsCS8 },
+       { "VMSupportsCS8", "()Z", (void *) (intptr_t) &Java_java_util_concurrent_atomic_AtomicLong_VMSupportsCS8 },
 };
 
 
@@ -60,6 +60,19 @@ void _Jv_java_util_concurrent_atomic_AtomicLong_init(void)
 }
 
 
+/*
+ * Class:     java/util/concurrent/atomic/AtomicLong
+ * Method:    VMSupportsCS8
+ * Signature: ()Z
+ */
+JNIEXPORT int32_t JNICALL Java_java_util_concurrent_atomic_AtomicLong_VMSupportsCS8(JNIEnv *env, jclass clazz)
+{
+       /* IMPLEMENT ME */
+
+       return 0;
+}
+
+
 /*
  * These are local overrides for various environment variables in Emacs.
  * Please do not remove this and leave it at the end of the file, where