comparison src/os/windows/vm/os_windows.cpp @ 342:37f87013dfd8

6711316: Open source the Garbage-First garbage collector Summary: First mercurial integration of the code for the Garbage-First garbage collector. Reviewed-by: apetrusenko, iveresov, jmasa, sgoldman, tonyp, ysr
author ysr
date Thu, 05 Jun 2008 15:57:56 -0700
parents 8bd1e4487c18
children 1ee8caae33af
comparison
equal deleted inserted replaced
189:0b27f3512f9e 342:37f87013dfd8
733 jlong a = (l * 10000) + offset(); 733 jlong a = (l * 10000) + offset();
734 FILETIME result; 734 FILETIME result;
735 result.dwHighDateTime = high(a); 735 result.dwHighDateTime = high(a);
736 result.dwLowDateTime = low(a); 736 result.dwLowDateTime = low(a);
737 return result; 737 return result;
738 }
739
740 // For now, we say that Windows does not support vtime. I have no idea
741 // whether it can actually be made to (DLD, 9/13/05).
742
743 bool os::supports_vtime() { return false; }
744 bool os::enable_vtime() { return false; }
745 bool os::vtime_enabled() { return false; }
746 double os::elapsedVTime() {
747 // better than nothing, but not much
748 return elapsedTime();
738 } 749 }
739 750
740 jlong os::javaTimeMillis() { 751 jlong os::javaTimeMillis() {
741 if (UseFakeTimers) { 752 if (UseFakeTimers) {
742 return fake_time++; 753 return fake_time++;