You are viewing a plain text version of this content. The canonical link for it is here.
Posted to kato-commits@incubator.apache.org by sp...@apache.org on 2009/06/20 07:21:33 UTC

svn commit: r786759 - /incubator/kato/branches/experimental/maven_restructure/org.apache.kato.native/kato.native.pyjvmti/src/pyjvmti.c

Author: spoole
Date: Sat Jun 20 07:21:33 2009
New Revision: 786759

URL: http://svn.apache.org/viewvc?rev=786759&view=rev
Log:
added small comment to pyjvmti.c

Modified:
    incubator/kato/branches/experimental/maven_restructure/org.apache.kato.native/kato.native.pyjvmti/src/pyjvmti.c

Modified: incubator/kato/branches/experimental/maven_restructure/org.apache.kato.native/kato.native.pyjvmti/src/pyjvmti.c
URL: http://svn.apache.org/viewvc/incubator/kato/branches/experimental/maven_restructure/org.apache.kato.native/kato.native.pyjvmti/src/pyjvmti.c?rev=786759&r1=786758&r2=786759&view=diff
==============================================================================
--- incubator/kato/branches/experimental/maven_restructure/org.apache.kato.native/kato.native.pyjvmti/src/pyjvmti.c (original)
+++ incubator/kato/branches/experimental/maven_restructure/org.apache.kato.native/kato.native.pyjvmti/src/pyjvmti.c Sat Jun 20 07:21:33 2009
@@ -12,6 +12,16 @@
  * limitations under the License.
  ******************************************************************************/
 
+/**
+* This is a jvmti agent designed to provide a bridge to Python. 
+* Most of the jvmti functions (but not all)  are made available as equivilent python native
+* functions.  The mashalleing into and out of python structures is carried out by these
+* rountines
+* To help the python user get benefit from the jvmti functions, common jni functions are
+* also bridged
+*
+**/
+
 #include <Python.h>
 #include "jni.h"
 #include "jvmti.h"