diff options
author | Sven de Marothy <sven@physto.se> | 2006-07-26 20:18:01 +0000 |
---|---|---|
committer | Sven de Marothy <sven@physto.se> | 2006-07-26 20:18:01 +0000 |
commit | dad1155567400c9106590f41b3f911f1482c58ad (patch) | |
tree | 843015d72072b0e55263e754767c0f8c3cdbd70b /include | |
parent | fc802c9325e352614243b2cd9e2b06ed8114a0d7 (diff) | |
download | classpath-dad1155567400c9106590f41b3f911f1482c58ad.tar.gz |
2006-07-26 Sven de Marothy <sven@physto.se>
* include/java_lang_VMSystem.h
* vm/reference/java/lang/VMSystem.java
* native/jni/java-lang/java_lang_VMSystem.c
(nanoTime, currentTimeMillis): Switch the former to native code and
the latter to java.
Diffstat (limited to 'include')
-rw-r--r-- | include/java_lang_VMSystem.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/java_lang_VMSystem.h b/include/java_lang_VMSystem.h index 11b89ba27..1bc55cf9d 100644 --- a/include/java_lang_VMSystem.h +++ b/include/java_lang_VMSystem.h @@ -15,7 +15,7 @@ JNIEXPORT jint JNICALL Java_java_lang_VMSystem_identityHashCode (JNIEnv *env, jc JNIEXPORT void JNICALL Java_java_lang_VMSystem_setIn (JNIEnv *env, jclass, jobject); JNIEXPORT void JNICALL Java_java_lang_VMSystem_setOut (JNIEnv *env, jclass, jobject); JNIEXPORT void JNICALL Java_java_lang_VMSystem_setErr (JNIEnv *env, jclass, jobject); -JNIEXPORT jlong JNICALL Java_java_lang_VMSystem_currentTimeMillis (JNIEnv *env, jclass); +JNIEXPORT jlong JNICALL Java_java_lang_VMSystem_nanoTime (JNIEnv *env, jclass); JNIEXPORT jobject JNICALL Java_java_lang_VMSystem_environ (JNIEnv *env, jclass); JNIEXPORT jstring JNICALL Java_java_lang_VMSystem_getenv (JNIEnv *env, jclass, jstring); |