From: twisti Date: Fri, 17 Aug 2007 22:11:53 +0000 (+0000) Subject: * src/native/vm/gnu/sun_reflect_ConstantPool.c (native/llni.h): Added. X-Git-Url: http://wien.tomnetworks.com/gitweb/?a=commitdiff_plain;h=444c5821d09f3530814efbe0149bdbbf614df6d3;p=cacao.git * src/native/vm/gnu/sun_reflect_ConstantPool.c (native/llni.h): Added. (boilerplate): Likewise. --- diff --git a/src/native/vm/gnu/sun_reflect_ConstantPool.c b/src/native/vm/gnu/sun_reflect_ConstantPool.c index 77030ca4e..20130a78c 100644 --- a/src/native/vm/gnu/sun_reflect_ConstantPool.c +++ b/src/native/vm/gnu/sun_reflect_ConstantPool.c @@ -1,6 +1,6 @@ /* src/native/vm/gnu/sun_reflect_ConstantPool.c - Copyright (C) 1996-2005, 2006, 2007 R. Grafl, A. Krall, C. Kruegel, + Copyright (C) 2007 R. Grafl, A. Krall, C. Kruegel, C. Oates, R. Obermaisser, M. Platter, M. Probst, S. Ring, E. Steiner, C. Thalinger, D. Thuernbeck, P. Tomsich, C. Ullrich, J. Wenninger, M. S. Panzenböck Institut f. Computersprachen - TU Wien @@ -22,6 +22,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + $Id: java_lang_VMClass.c 8341 2007-08-17 21:32:01Z michi $ + */ /******************************************************************************* @@ -40,10 +42,13 @@ #include "mm/memory.h" #include "native/jni.h" +#include "native/llni.h" #include "native/native.h" + #include "native/include/java_lang_Object.h" #include "native/include/java_lang_Class.h" #include "native/include/sun_reflect_ConstantPool.h" + #include "native/vm/reflect.h" #include "toolbox/logging.h" @@ -55,6 +60,7 @@ #include "vmcore/class.h" #include "vmcore/utf8.h" + /* native methods implemented by this file ************************************/ static JNINativeMethod methods[] = { @@ -388,3 +394,18 @@ JNIEXPORT struct java_lang_String* JNICALL Java_sun_reflect_ConstantPool_getUTF8 /* XXX: I hope literalstring_new is the right Function. */ return (java_lang_String*)literalstring_new(ref); } + + +/* + * 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 + * Emacs will automagically detect them. + * --------------------------------------------------------------------- + * Local variables: + * mode: c + * indent-tabs-mode: t + * c-basic-offset: 4 + * tab-width: 4 + * End: + * vim:noexpandtab:sw=4:ts=4: + */