mirror of
https://github.com/reactos/reactos.git
synced 2025-07-03 02:21:21 +00:00
Create a branch for header work.
svn path=/branches/header-work/; revision=45691
This commit is contained in:
parent
14fe274b1c
commit
9ea495ba33
19538 changed files with 0 additions and 1063950 deletions
30
lib/sdk/crt/time/clock.c
Normal file
30
lib/sdk/crt/time/clock.c
Normal file
|
@ -0,0 +1,30 @@
|
|||
/*
|
||||
* COPYRIGHT: LGPL, See LGPL.txt in the top level directory
|
||||
* PROJECT: ReactOS CRT library
|
||||
* FILE: lib/sdk/crt/time/clock.c
|
||||
* PURPOSE: Implementation of clock()
|
||||
* PROGRAMER: Timo Kreuzer
|
||||
*/
|
||||
#include <precomp.h>
|
||||
|
||||
ULARGE_INTEGER g_StartupTime;
|
||||
|
||||
void
|
||||
initclock(void)
|
||||
{
|
||||
GetSystemTimeAsFileTime((FILETIME*)&g_StartupTime);
|
||||
}
|
||||
|
||||
/******************************************************************************
|
||||
* \name clock
|
||||
* \brief Returns the current process's elapsed time.
|
||||
*/
|
||||
clock_t
|
||||
clock(void)
|
||||
{
|
||||
ULARGE_INTEGER Time;
|
||||
|
||||
GetSystemTimeAsFileTime((FILETIME*)&Time);
|
||||
Time.QuadPart -= g_StartupTime.QuadPart;
|
||||
return FileTimeToUnixTime((FILETIME*)&Time, NULL);
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue