/* src/native/vm/gnuclasspath/gnu_java_lang_management_VMRuntimeMXBeanImpl.cpp Copyright (C) 1996-2005, 2006, 2007, 2008 CACAOVM - Verein zur Foerderung der freien virtuellen Maschine CACAO This file is part of CACAO. This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ #include "config.h" #include #include "native/jni.h" #include "native/native.h" #if defined(ENABLE_JNI_HEADERS) # include "native/vm/include/gnu_java_lang_management_VMRuntimeMXBeanImpl.h" #endif #include "vm/builtin.h" #include "vm/global.h" #include "vm/vm.hpp" #include "vmcore/globals.hpp" #include "vmcore/utf8.h" // Native functions are exported as C functions. extern "C" { /* * Class: gnu/java/lang/management/VMRuntimeMXBeanImpl * Method: getInputArguments * Signature: ()[Ljava/lang/String; */ JNIEXPORT java_handle_objectarray_t* JNICALL Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments(JNIEnv *env, jclass clazz) { log_println("Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments: IMPLEMENT ME!"); return builtin_anewarray(0, class_java_lang_String); } /* * Class: gnu/java/lang/management/VMRuntimeMXBeanImpl * Method: getStartTime * Signature: ()J */ JNIEXPORT int64_t JNICALL Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime(JNIEnv *env, jclass clazz) { return vm->get_starttime(); } } // extern "C" /* native methods implemented by this file ************************************/ static JNINativeMethod methods[] = { { (char*) "getInputArguments", (char*) "()[Ljava/lang/String;", (void*) (uintptr_t) &Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getInputArguments }, { (char*) "getStartTime", (char*) "()J", (void*) (uintptr_t) &Java_gnu_java_lang_management_VMRuntimeMXBeanImpl_getStartTime }, }; /* _Jv_gnu_java_lang_management_VMRuntimeMXBeanImpl_init *********************** Register native functions. *******************************************************************************/ // FIXME extern "C" { void _Jv_gnu_java_lang_management_VMRuntimeMXBeanImpl_init(void) { utf *u; u = utf_new_char("gnu/java/lang/management/VMRuntimeMXBeanImpl"); native_method_register(u, methods, NATIVE_METHODS_COUNT); } } /* * 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: */