Fix compile under Window MinGW environment
Switch to __int64 from _int64. Change the constant declaration to use LL instead of a cast.
This commit is contained in:
parent
61fa1c026b
commit
fc779dd47a
1 changed files with 5 additions and 5 deletions
|
@ -47,19 +47,19 @@ getrusage(int who, struct rusage *rus)
|
||||||
if (who == RUSAGE_SELF) {
|
if (who == RUSAGE_SELF) {
|
||||||
HANDLE hProcess;
|
HANDLE hProcess;
|
||||||
FILETIME ftCreation, ftExit, ftUser, ftKernel;
|
FILETIME ftCreation, ftExit, ftUser, ftKernel;
|
||||||
_int64 itmp;
|
__int64 itmp;
|
||||||
|
|
||||||
hProcess = GetCurrentProcess ();
|
hProcess = GetCurrentProcess ();
|
||||||
|
|
||||||
GetProcessTimes (hProcess, &ftCreation, &ftExit, &ftKernel, &ftUser);
|
GetProcessTimes (hProcess, &ftCreation, &ftExit, &ftKernel, &ftUser);
|
||||||
|
|
||||||
itmp = (_int64)ftUser.dwLowDateTime +
|
itmp = (__int64)ftUser.dwLowDateTime +
|
||||||
((_int64)ftUser.dwHighDateTime * (_int64)0x100000000);
|
((__int64)ftUser.dwHighDateTime * 0x100000000LL);
|
||||||
rus->ru_utime.tv_sec = (long)(itmp / 10000000U);
|
rus->ru_utime.tv_sec = (long)(itmp / 10000000U);
|
||||||
rus->ru_utime.tv_usec = (long)((itmp % 10000000U) / 10.);
|
rus->ru_utime.tv_usec = (long)((itmp % 10000000U) / 10.);
|
||||||
|
|
||||||
itmp = (_int64)ftKernel.dwLowDateTime +
|
itmp = (__int64)ftKernel.dwLowDateTime +
|
||||||
((_int64)ftKernel.dwHighDateTime * (_int64)0x100000000);
|
((__int64)ftKernel.dwHighDateTime * 0x100000000LL);
|
||||||
rus->ru_stime.tv_sec = (long)(itmp / 10000000U);
|
rus->ru_stime.tv_sec = (long)(itmp / 10000000U);
|
||||||
rus->ru_stime.tv_usec = (long)((itmp % 10000000U) / 10.);
|
rus->ru_stime.tv_usec = (long)((itmp % 10000000U) / 10.);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue