You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by dl...@apache.org on 2006/04/05 07:16:19 UTC

svn commit: r391506 - /incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/native.h

Author: dlydick
Date: Tue Apr  4 22:16:17 2006
New Revision: 391506

URL: http://svn.apache.org/viewcvs?rev=391506&view=rev
Log:
Restructured param linkage for native_run_method().

Minor comment changes.

Modified:
    incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/native.h

Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/native.h
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/native.h?rev=391506&r1=391505&r2=391506&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/native.h (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/src/native.h Tue Apr  4 22:16:17 2006
@@ -52,10 +52,13 @@
 /* Prototypes for functions in 'native.c' */
 
 extern rvoid native_run_method(jvm_thread_index          thridx,
-                               jvm_native_method_ordinal nmord,
                                jvm_class_index           clsidx,
+                               jvm_native_method_ordinal nmord,
                                jvm_constant_pool_index   mthnameidx,
-                               jvm_constant_pool_index   mthdescidx);
+                               jvm_constant_pool_index   mthdescidx,
+                               jvm_access_flags          access_flags,
+                               jvm_virtual_opcode        opcode,
+                               rboolean                  isinitmethod);
 
 extern jvm_native_method_ordinal native_locate_local_method(
                                 ClassFile               *pcfs,