Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion linux/JackLinuxTime.c
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,12 @@ static jack_time_t jack_get_microseconds_from_hpet (void)

#endif /* HPET_SUPPORT */

#define HAVE_CLOCK_GETTIME 1
/* One should avoid gettimeofday for purposes of timestamping,
* cause it is possible to mis calculate time between timestamps
* if something/user changes system date.
* -- lja
*/
/* #define HAVE_CLOCK_GETTIME 1 */

#ifndef HAVE_CLOCK_GETTIME

Expand Down