2004-10-14 00:21:07 +04:00
|
|
|
/*
|
2005-11-05 22:57:48 +03:00
|
|
|
Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
|
|
|
|
University Research and Technology
|
|
|
|
Corporation. All rights reserved.
|
|
|
|
Copyright (c) 2004-2005 The University of Tennessee and The University
|
|
|
|
of Tennessee Research Foundation. All rights
|
|
|
|
reserved.
|
2004-11-28 23:09:25 +03:00
|
|
|
Copyright (c) 2004-2005 High Performance Computing Center Stuttgart,
|
|
|
|
University of Stuttgart. All rights reserved.
|
2005-03-24 15:43:37 +03:00
|
|
|
Copyright (c) 2004-2005 The Regents of the University of California.
|
|
|
|
All rights reserved.
|
2004-11-22 04:38:40 +03:00
|
|
|
$COPYRIGHT$
|
|
|
|
|
|
|
|
Additional copyrights may follow
|
|
|
|
|
2004-10-14 00:21:07 +04:00
|
|
|
$HEADER$
|
|
|
|
*/
|
|
|
|
|
2006-02-12 04:33:29 +03:00
|
|
|
#include "opal_config.h"
|
2005-12-18 01:07:04 +03:00
|
|
|
#include "opal/win32/ompi_time.h"
|
2004-10-14 00:21:07 +04:00
|
|
|
|
2005-12-18 01:07:04 +03:00
|
|
|
#include<time.h>
|
2004-10-14 00:21:07 +04:00
|
|
|
|
2004-11-03 06:57:20 +03:00
|
|
|
#define EPOCHFILETIME (116444736000000000LL)
|
|
|
|
|
2006-08-20 22:50:47 +04:00
|
|
|
int gettimeofday(struct timeval *tv, struct timezone *tz)
|
2005-12-18 01:07:04 +03:00
|
|
|
{
|
2004-10-14 00:21:07 +04:00
|
|
|
|
|
|
|
FILETIME file_time;
|
2004-11-03 06:57:20 +03:00
|
|
|
LARGE_INTEGER place_holder;
|
2004-10-14 00:21:07 +04:00
|
|
|
__int64 time;
|
|
|
|
|
|
|
|
|
|
|
|
/* returns 64 bit value which is the number of 100 nanosecond
|
|
|
|
intervals since 1601(UTC) */
|
|
|
|
GetSystemTimeAsFileTime (&file_time);
|
|
|
|
|
|
|
|
/* Windows recommends that we should copy the FILETIME returned
|
|
|
|
into a ULARGE_INTEGER and then perform the arithmetic on that */
|
|
|
|
place_holder.LowPart = file_time.dwLowDateTime;
|
|
|
|
place_holder.HighPart = file_time.dwHighDateTime;
|
|
|
|
time = place_holder.QuadPart;
|
2004-11-03 06:57:20 +03:00
|
|
|
time -= EPOCHFILETIME;
|
|
|
|
|
2004-10-14 00:21:07 +04:00
|
|
|
/* Now we can use arithmetic operations on time which is nothing but
|
|
|
|
a 64 bit integer holding time in 100 nanosec intervals */
|
|
|
|
|
|
|
|
/* convert 100 nanoseconds intervals into microseconds .. divide by 10 */
|
|
|
|
time /= 10;
|
|
|
|
|
|
|
|
tv->tv_sec = (long)(time / 1000000);
|
|
|
|
tv->tv_usec = (long)(time % 1000000);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|