Bug 1083694 - TraceLogger: Part 9: Create dummy of rdtsc for all platforms, r=h4writer

This commit is contained in:
Hannes Verschore 2014-11-20 17:44:05 +01:00
parent 8b01ebecf5
commit 190c7f4fc1

View File

@ -73,6 +73,12 @@ rdtsc(void)
return result;
}
#else
static __inline__ uint64_t
rdtsc(void)
{
return 0;
}
#endif
class AutoTraceLoggerThreadStateLock