mirror of
https://github.com/YosysHQ/yosys
synced 2025-04-06 17:44:09 +00:00
log: Remove unused _POSIX_TIMERS
branch in PerformanceTimer::query()
.
This commit is contained in:
parent
a564cc806f
commit
28c2dd470b
|
@ -308,10 +308,6 @@ struct PerformanceTimer
|
||||||
static int64_t query() {
|
static int64_t query() {
|
||||||
# ifdef _WIN32
|
# ifdef _WIN32
|
||||||
return 0;
|
return 0;
|
||||||
# elif defined(_POSIX_TIMERS) && (_POSIX_TIMERS > 0)
|
|
||||||
struct timespec ts;
|
|
||||||
clock_gettime(CLOCK_PROCESS_CPUTIME_ID, &ts);
|
|
||||||
return int64_t(ts.tv_sec)*1000000000 + ts.tv_nsec;
|
|
||||||
# elif defined(RUSAGE_SELF)
|
# elif defined(RUSAGE_SELF)
|
||||||
struct rusage rusage;
|
struct rusage rusage;
|
||||||
int64_t t = 0;
|
int64_t t = 0;
|
||||||
|
|
Loading…
Reference in a new issue