projects
/
freeglut
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d54280c
)
Implementing the monotonic clock if available, per e-mail from Phil Vandry dated...
author
John F. Fay
<johnffay@nettally.com>
Sat, 25 Feb 2012 05:47:57 +0000
(
05:47
+0000)
committer
John F. Fay
<johnffay@nettally.com>
Sat, 25 Feb 2012 05:47:57 +0000
(
05:47
+0000)
git-svn-id: svn+ssh://svn.code.sf.net/p/freeglut/code/trunk/freeglut/freeglut@1079
7f0cb862
-5218-0410-a997-
914c9d46530a
src/x11/freeglut_main_x11.c
patch
|
blob
|
history
diff --git
a/src/x11/freeglut_main_x11.c
b/src/x11/freeglut_main_x11.c
index
33553e3
..
75bc54c
100644
(file)
--- a/
src/x11/freeglut_main_x11.c
+++ b/
src/x11/freeglut_main_x11.c
@@
-91,11
+91,17
@@
void fgPlatformDisplayWindow ( SFG_Window *window )
unsigned long fgPlatformSystemTime ( void )
{
+#ifdef CLOCK_MONOTONIC
+ struct timespec now;
+ clock_gettime(CLOCK_MONOTONIC, &now);
+ return now.tv_nsec/1000000 + now.tv_sec*1000;
+#else
#ifdef HAVE_GETTIMEOFDAY
struct timeval now;
gettimeofday( &now, NULL );
return now.tv_usec/1000 + now.tv_sec*1000;
#endif
+#endif
}
/*