Changeset 55296 in webkit for trunk/JavaScriptCore/runtime/TimeoutChecker.cpp
- Timestamp:
- Feb 26, 2010, 11:50:53 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/TimeoutChecker.cpp
r53926 r55296 85 85 86 86 return userTime.fileTimeAsLong / 10000 + kernelTime.fileTimeAsLong / 10000; 87 #elif OS(SYMBIAN) 88 RThread current; 89 TTimeIntervalMicroSeconds cpuTime; 90 91 TInt err = current.GetCpuTime(cpuTime); 92 ASSERT_WITH_MESSAGE(err == KErrNone, "GetCpuTime failed with %d", err); 93 return cpuTime.Int64() / 1000; 87 94 #elif PLATFORM(BREWMP) 88 95 // This function returns a continuously and linearly increasing millisecond
Note:
See TracChangeset
for help on using the changeset viewer.