[vmkit-commits] [vmkit] r109975 - in /vmkit/trunk/lib/J3/Classpath: ClasspathVMSystemProperties.inc ClasspathVMThrowable.inc

Nicolas Geoffray nicolas.geoffray at lip6.fr
Sun Aug 1 05:49:41 PDT 2010


Author: geoffray
Date: Sun Aug  1 07:49:41 2010
New Revision: 109975

URL: http://llvm.org/viewvc/llvm-project?rev=109975&view=rev
Log:
Change static methods to non-static.


Modified:
    vmkit/trunk/lib/J3/Classpath/ClasspathVMSystemProperties.inc
    vmkit/trunk/lib/J3/Classpath/ClasspathVMThrowable.inc

Modified: vmkit/trunk/lib/J3/Classpath/ClasspathVMSystemProperties.inc
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/J3/Classpath/ClasspathVMSystemProperties.inc?rev=109975&r1=109974&r2=109975&view=diff
==============================================================================
--- vmkit/trunk/lib/J3/Classpath/ClasspathVMSystemProperties.inc (original)
+++ vmkit/trunk/lib/J3/Classpath/ClasspathVMSystemProperties.inc Sun Aug  1 07:49:41 2010
@@ -24,8 +24,8 @@
 
 extern "C" {
 
-static void setProperty(Jnjvm* vm, JavaObject* prop, const char* key,
-                        const char* val) {
+void setProperty(Jnjvm* vm, JavaObject* prop, const char* key,
+                 const char* val) {
 
   JavaString* Val = 0; 
   JavaString* Key = 0; 
@@ -40,7 +40,7 @@
       vm, (UserClass*)JavaObject::getClass(prop), prop, &Key, &Val);
 }
 
-static void setUnameProp(Jnjvm* vm, JavaObject* prop) {
+void setUnameProp(Jnjvm* vm, JavaObject* prop) {
 
   llvm_gcroot(prop, 0);
 

Modified: vmkit/trunk/lib/J3/Classpath/ClasspathVMThrowable.inc
URL: http://llvm.org/viewvc/llvm-project/vmkit/trunk/lib/J3/Classpath/ClasspathVMThrowable.inc?rev=109975&r1=109974&r2=109975&view=diff
==============================================================================
--- vmkit/trunk/lib/J3/Classpath/ClasspathVMThrowable.inc (original)
+++ vmkit/trunk/lib/J3/Classpath/ClasspathVMThrowable.inc Sun Aug  1 07:49:41 2010
@@ -83,7 +83,7 @@
 }
 
 
-static JavaObject* consStackElement(JavaMethod* meth, void* ip) {
+JavaObject* consStackElement(JavaMethod* meth, void* ip) {
 
   JavaString* methodName = 0;
   JavaString* className = 0;





More information about the vmkit-commits mailing list