Thread: getrusage on win32

getrusage on win32

From
"Magnus Hagander"
Date:
Here is a fix for getrusage on win32. This fixes the bad timing output
from vacuum verbose.

The reason for the really weird numbers before was that the memset()
used to clear out the structure used sizeof(rusage) instead of
sizeof(struct rusage). That said, the old version didn't actually return
anything other than 0 by design. This version checks the actual times...

//Magnus


Attachment

Re: getrusage on win32

From
Tom Lane
Date:
"Magnus Hagander" <mha@sollentuna.net> writes:
> Here is a fix for getrusage on win32. This fixes the bad timing output
> from vacuum verbose.

Applied.

            regards, tom lane