mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-28 15:23:51 +00:00
Bug 1083694
- TraceLogger: Part 9: Create dummy of rdtsc for all platforms, r=h4writer
This commit is contained in:
parent
8b01ebecf5
commit
190c7f4fc1
@ -73,6 +73,12 @@ rdtsc(void)
|
||||
|
||||
return result;
|
||||
}
|
||||
#else
|
||||
static __inline__ uint64_t
|
||||
rdtsc(void)
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
class AutoTraceLoggerThreadStateLock
|
||||
|
Loading…
Reference in New Issue
Block a user