Commit 3a13ffa9 by Janne Blomqvist

Fix GF_CLOCK_MONOTONIC from r169449

From-SVN: r169450
parent b6e7a3d1
2011-01-31 Janne Blomqvist <jb@gcc.gnu.org> 2011-01-31 Janne Blomqvist <jb@gcc.gnu.org>
* intrinsics/time_1.h: Fix definition of GF_CLOCK_MONOTONIC macro.
2011-01-31 Janne Blomqvist <jb@gcc.gnu.org>
* configure.ac: Check for clock_gettime(). * configure.ac: Check for clock_gettime().
* configure: Regenerated. * configure: Regenerated.
* config.h.in: Regenerated. * config.h.in: Regenerated.
......
...@@ -184,7 +184,7 @@ gf_cputime (long *user_sec, long *user_usec, long *system_sec, long *system_usec ...@@ -184,7 +184,7 @@ gf_cputime (long *user_sec, long *user_usec, long *system_sec, long *system_usec
#ifdef CLOCK_MONOTONIC #ifdef CLOCK_MONOTONIC
#define GF_CLOCK_MONOTONIC CLOCK_MONOTONIC #define GF_CLOCK_MONOTONIC CLOCK_MONOTONIC
#else #else
#define GF_CLOCK_REALTIME GF_CLOCK_REALTIME #define GF_CLOCK_MONOTONIC GF_CLOCK_REALTIME
#endif #endif
/* Arguments: /* Arguments:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment