Cygwin: spinlock: remove useless get_ll call
LARGE_INTEGER has QuadPart anyway, no reason to compute the 64 bit value from HighPart and LowPart. Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
This commit is contained in:
parent
2d6b71ee6d
commit
a094c5bafa
@ -30,7 +30,7 @@ class spinlock
|
|||||||
{
|
{
|
||||||
LARGE_INTEGER t;
|
LARGE_INTEGER t;
|
||||||
if (NtQuerySystemTime (&t) == STATUS_SUCCESS)
|
if (NtQuerySystemTime (&t) == STATUS_SUCCESS)
|
||||||
return get_ll (t);
|
return t.QuadPart;
|
||||||
return 0LL;
|
return 0LL;
|
||||||
}
|
}
|
||||||
public:
|
public:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user