Changeset 66475 in webkit for trunk/JavaScriptCore/runtime/TimeoutChecker.cpp
- Timestamp:
- Aug 31, 2010, 5:02:10 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/TimeoutChecker.cpp
r55296 r66475 99 99 #else 100 100 // FIXME: We should return the time the current thread has spent executing. 101 return currentTime() * 1000; 101 102 // use a relative time from first call in order to avoid an overflow 103 static double firstTime = currentTime(); 104 return (currentTime() - firstTime) * 1000; 102 105 #endif 103 106 }
Note:
See TracChangeset
for help on using the changeset viewer.