Removed sleep, it's now implemented completely in java.
authortwisti <none@none>
Wed, 4 May 2005 10:26:11 +0000 (10:26 +0000)
committertwisti <none@none>
Wed, 4 May 2005 10:26:11 +0000 (10:26 +0000)
src/native/vm/VMThread.c

index fcb8f820cfaf509850e55f520e67286cffec6ee1..c6ea1ca2587dcc6e920be077d2d48001a8231d19 100644 (file)
@@ -29,7 +29,7 @@
    Changes: Joseph Wenninger
             Christian Thalinger
 
-   $Id: VMThread.c 2347 2005-04-22 13:51:36Z twisti $
+   $Id: VMThread.c 2435 2005-05-04 10:26:11Z twisti $
 
 */
 
@@ -220,19 +220,6 @@ JNIEXPORT void JNICALL Java_java_lang_VMThread_nativeSetPriority(JNIEnv *env, ja
 }
 
 
-/*
- * Class:     java/lang/VMThread
- * Method:    sleep
- * Signature: (JI)V
- */
-JNIEXPORT void JNICALL Java_java_lang_VMThread_sleep(JNIEnv *env, jclass clazz, s8 millis, s4 nanos)
-{
-#if defined(USE_THREADS)
-       sleepThread(millis, nanos);
-#endif
-}
-
-
 /*
  * Class:     java/lang/VMThread
  * Method:    start