Skip to content

Commit

Permalink
comment clock_gettime
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreaGuarracino committed Jul 8, 2022
1 parent 48ccacd commit c5882a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/common/wflign/deps/WFA/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ UNAME=$(shell uname)
CC:=$(CC)
CPP:=$(CXX)

CC_FLAGS=-Wall -g -lrt
CC_FLAGS=-Wall -g

AR=ar
AR_FLAGS=-rsc
Expand Down
2 changes: 1 addition & 1 deletion src/common/wflign/deps/WFA/system/profiler_timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ void timer_get_system_time(struct timespec *ts) {
ts->tv_sec = mts.tv_sec;
ts->tv_nsec = mts.tv_nsec;
#else
clock_gettime(CLOCK_REALTIME,ts);
//clock_gettime(CLOCK_REALTIME,ts);
#endif
}
/*
Expand Down

0 comments on commit c5882a1

Please sign in to comment.