You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/07/03 09:56:57 UTC

svn commit: r790820 - in /commons/sandbox/runtime/trunk/src/main/native: shared/clazz.c shared/pointer.c test/testcase.c

Author: mturk
Date: Fri Jul  3 07:56:57 2009
New Revision: 790820

URL: http://svn.apache.org/viewvc?rev=790820&view=rev
Log:
Use renamed Pointer class name

Modified:
    commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c
    commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c
    commons/sandbox/runtime/trunk/src/main/native/test/testcase.c

Modified: commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c?rev=790820&r1=790819&r2=790820&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/shared/clazz.c Fri Jul  3 07:56:57 2009
@@ -371,7 +371,7 @@
 
 /* Forward class loading declarations */
 ACR_CLASS_LDEC(Descriptor);
-ACR_CLASS_LDEC(Pointer);
+ACR_CLASS_LDEC(NativePointer);
 ACR_CLASS_LDEC(DirectBuffer);
 ACR_CLASS_LDEC(MbString);
 ACR_CLASS_LDEC(Group);
@@ -382,7 +382,7 @@
 {
 
     ACR_CLASS_LRUN(Descriptor);
-    ACR_CLASS_LRUN(Pointer);
+    ACR_CLASS_LRUN(NativePointer);
     ACR_CLASS_LRUN(DirectBuffer);
     ACR_CLASS_LRUN(MbString);
     ACR_CLASS_LRUN(Group);
@@ -399,7 +399,7 @@
 {
 
     ACR_CLASS_URUN(Descriptor);
-    ACR_CLASS_URUN(Pointer);
+    ACR_CLASS_URUN(NativePointer);
     ACR_CLASS_URUN(DirectBuffer);
     ACR_CLASS_URUN(MbString);
     ACR_CLASS_URUN(Group);

Modified: commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c?rev=790820&r1=790819&r2=790820&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/shared/pointer.c Fri Jul  3 07:56:57 2009
@@ -82,7 +82,7 @@
 };
 
 
-ACR_CLASS_LDEF(Pointer)
+ACR_CLASS_LDEF(NativePointer)
 {
     int rv;
 
@@ -96,7 +96,7 @@
     return ACR_SUCCESS;
 }
 
-ACR_CLASS_UDEF(Pointer)
+ACR_CLASS_UDEF(NativePointer)
 {
     ACR_UnloadClass(_E, &_clazzn);
 }
@@ -111,7 +111,7 @@
 
 static int initp0(JNIEnv *_E)
 {
-    ACR_CLASS_LRUN(Pointer);
+    ACR_CLASS_LRUN(NativePointer);
     return 0;
 }
 

Modified: commons/sandbox/runtime/trunk/src/main/native/test/testcase.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/test/testcase.c?rev=790820&r1=790819&r2=790820&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/test/testcase.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/test/testcase.c Fri Jul  3 07:56:57 2009
@@ -205,11 +205,11 @@
     return a;
 }
 
-ACR_CLASS_LDEC(Pointer);
+ACR_CLASS_LDEC(NativePointer);
 
 ACR_JNI_EXPORT_DECLARE(jint, TestPrivate, test016)(ACR_JNISTDARGS, jint d)
 {
-    ACR_CLASS_LRUN(Pointer);
+    ACR_CLASS_LRUN(NativePointer);
     return 0;
 }