mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 05:41:12 +00:00
make libutil compile on wince. no stopwatch on windows ce. r=darin, b=281945
This commit is contained in:
parent
5b1084a5a5
commit
3320514b36
@ -202,6 +202,8 @@ double Stopwatch::GetCPUTime(){
|
||||
return (double)(cpt.tms_utime+cpt.tms_stime) / gTicks;
|
||||
#elif defined(R__VMS)
|
||||
return(double)clock()/gTicks;
|
||||
#elif defined(WINCE)
|
||||
return 0;
|
||||
#elif defined(WIN32)
|
||||
|
||||
OSVERSIONINFO OsVersionInfo;
|
||||
|
Loading…
Reference in New Issue
Block a user