< prev index next >

src/share/vm/prims/jvm.cpp

Print this page

        

*** 302,312 **** // The function below is actually exposed by sun.misc.VM and not // java.lang.System, but we choose to keep it here so that it stays next // to JVM_CurrentTimeMillis and JVM_NanoTime ! const jlong MAX_DIFF_SECS = 0x0100000000; // 2^32 const jlong MIN_DIFF_SECS = -MAX_DIFF_SECS; // -2^32 JVM_LEAF(jlong, JVM_GetNanoTimeAdjustment(JNIEnv *env, jclass ignored, jlong offset_secs)) JVMWrapper("JVM_GetNanoTimeAdjustment"); jlong seconds; --- 302,312 ---- // The function below is actually exposed by sun.misc.VM and not // java.lang.System, but we choose to keep it here so that it stays next // to JVM_CurrentTimeMillis and JVM_NanoTime ! const jlong MAX_DIFF_SECS = 0x0100000000LL; // 2^32 const jlong MIN_DIFF_SECS = -MAX_DIFF_SECS; // -2^32 JVM_LEAF(jlong, JVM_GetNanoTimeAdjustment(JNIEnv *env, jclass ignored, jlong offset_secs)) JVMWrapper("JVM_GetNanoTimeAdjustment"); jlong seconds;
< prev index next >