Skip to content

Commit

Permalink
Merge 'mingw-safer-compat-poll'
Browse files Browse the repository at this point in the history
This was pull request #1003 from shoelzer/master

poll: Use GetTickCount64 to avoid wraparound issues
Signed-off-by: Johannes Schindelin <[email protected]>
  • Loading branch information
dscho authored and Git for Windows Build Agent committed Feb 23, 2019
2 parents 5a8df07 + 81ed73f commit c2d71c1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions compat/poll/poll.c
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,20 @@ win32_compute_revents_socket (SOCKET h, int sought, long lNetworkEvents)
return happened;
}

#include <windows.h>
#include "compat/win32/lazyload.h"

static ULONGLONG CompatGetTickCount64(void)
{
DECLARE_PROC_ADDR(kernel32.dll, ULONGLONG, GetTickCount64, void);

if (!INIT_PROC_ADDR(GetTickCount64))
return (ULONGLONG)GetTickCount();

return GetTickCount64();
}
#define GetTickCount64 CompatGetTickCount64

#else /* !MinGW */

/* Convert select(2) returned fd_sets into poll(2) revents values. */
Expand Down

0 comments on commit c2d71c1

Please sign in to comment.