aboutsummaryrefslogtreecommitdiff
path: root/programs/st_client.c
diff options
context:
space:
mode:
Diffstat (limited to 'programs/st_client.c')
-rw-r--r--programs/st_client.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/programs/st_client.c b/programs/st_client.c
index 3abcca4d..5e2f87c8 100644
--- a/programs/st_client.c
+++ b/programs/st_client.c
@@ -68,9 +68,10 @@ static int connecting = 0;
static int finish = 0;
static unsigned int
-get_tick_count(void)
+get_milliseconds_count(void)
{
#ifdef _WIN32
+ // obtain number of milliseconds since system started
return GetTickCount();
#else
struct timeval tv;
@@ -92,9 +93,9 @@ handle_events(int sock, struct socket* s, void* sconn_addr)
fd_set rfds;
struct timeval tv;
- unsigned next_fire_time = get_tick_count();
+ unsigned next_fire_time = get_milliseconds_count();
unsigned last_fire_time = next_fire_time;
- unsigned now = get_tick_count();
+ unsigned now = get_milliseconds_count();
int wait_time;
while (!finish) {