1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-10 01:48:00 +00:00

Remove inaccurate comment about Unix getticks() function.

It's not always based on gettimeofday(); now it mostly uses
clock_gettime().
This commit is contained in:
Ben Harris 2016-05-17 13:07:36 +02:00
parent 1de7240eb8
commit de52cc8597

View File

@ -74,7 +74,7 @@ typedef uint32_t uint32; /* C99: uint32_t defined in stdint.h */
#define SEL_NL { 10 }
/* Simple wraparound timer function */
unsigned long getticks(void); /* based on gettimeofday(2) */
unsigned long getticks(void);
#define GETTICKCOUNT getticks
#define TICKSPERSEC 1000 /* we choose to use milliseconds */
#define CURSORBLINK 450 /* no standard way to set this */