This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
At least one small bug. | |
In threads_msvc.c: | |
static DWORD impl_xtime2msec(const xtime *xt) | |
{ | |
return (DWORD)((xt->sec * 1000u) + (xt->nsec / 1000)); | |
} | |
should be |