blob: 14727af88b2325ec18893f4f828bb13c67ce08bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
$NetBSD: patch-aa,v 1.1.1.1 2010/10/16 15:35:08 wiz Exp $
ftime() is deprecated, use gettimeofday() instead.
--- shared/commonlib.c.orig 2009-02-01 19:31:59.000000000 +0000
+++ shared/commonlib.c
@@ -6,7 +6,7 @@
#elif defined EnhTime
# include <windows.h>
#else
-# include <sys/timeb.h>
+# include <sys/time.h>
#endif
#include <stdlib.h>
@@ -844,10 +844,10 @@ double timeNow(void)
}
return( timeBase + (double) now.QuadPart/(double) freq.QuadPart );
#else
- struct timeb buf;
+ struct timeval buf;
- ftime(&buf);
- return((double)buf.time+((double) buf.millitm)/1000.0);
+ gettimeofday(&buf, NULL);
+ return((double)buf.tv_sec+((double) buf.tv_usec)/1000000.0);
#endif
}
|