#include <unistd.h>
#endif /* HAVE_UNISTD_H */
+#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
+#endif
#include <time.h>
#ifndef G_OS_WIN32
#include <errno.h>
#include "gmem.h"
#include "gstrfuncs.h"
#include "gtestutils.h"
-#include "gmain.h"
+#include "gthread.h"
/**
* SECTION: timers
* that time. This is done somewhat differently on different platforms,
* and can be tricky to get exactly right, so #GTimer provides a
* portable/convenient interface.
+ *
+ * <note><para>
+ * #GTimer uses a higher-quality clock when thread support is available.
+ * Therefore, calling g_thread_init() while timers are running may lead to
+ * unreliable results. It is best to call g_thread_init() before starting any
+ * timers, if you are using threads at all.
+ * </para></note>
**/
+#define G_NSEC_PER_SEC 1000000000
+
+#define GETTIME(v) (v = g_thread_gettime ())
+
/**
* GTimer:
*
timer = g_new (GTimer, 1);
timer->active = TRUE;
- timer->start = g_get_monotonic_time ();
+ GETTIME (timer->start);
return timer;
}
timer->active = TRUE;
- timer->start = g_get_monotonic_time ();
+ GETTIME (timer->start);
}
/**
timer->active = FALSE;
- timer->end = g_get_monotonic_time ();
+ GETTIME (timer->end);
}
/**
{
g_return_if_fail (timer != NULL);
- timer->start = g_get_monotonic_time ();
+ GETTIME (timer->start);
}
/**
elapsed = timer->end - timer->start;
- timer->start = g_get_monotonic_time ();
+ GETTIME (timer->start);
timer->start -= elapsed;
**/
gdouble
g_timer_elapsed (GTimer *timer,
- gulong *microseconds)
+ gulong *microseconds)
{
gdouble total;
gint64 elapsed;
g_return_val_if_fail (timer != NULL, 0);
if (timer->active)
- timer->end = g_get_monotonic_time ();
+ GETTIME (timer->end);
elapsed = timer->end - timer->start;
{
#ifdef G_OS_WIN32
Sleep (microseconds / 1000);
-#else
+#else /* !G_OS_WIN32 */
+# ifdef HAVE_NANOSLEEP
struct timespec request, remaining;
request.tv_sec = microseconds / G_USEC_PER_SEC;
request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
while (nanosleep (&request, &remaining) == -1 && errno == EINTR)
request = remaining;
-#endif
+# else /* !HAVE_NANOSLEEP */
+# ifdef HAVE_NSLEEP
+ /* on AIX, nsleep is analogous to nanosleep */
+ struct timespec request, remaining;
+ request.tv_sec = microseconds / G_USEC_PER_SEC;
+ request.tv_nsec = 1000 * (microseconds % G_USEC_PER_SEC);
+ while (nsleep (&request, &remaining) == -1 && errno == EINTR)
+ request = remaining;
+# else /* !HAVE_NSLEEP */
+ if (g_thread_supported ())
+ {
+ static GStaticMutex mutex = G_STATIC_MUTEX_INIT;
+ static GCond* cond = NULL;
+ GTimeVal end_time;
+
+ g_get_current_time (&end_time);
+ if (microseconds > G_MAXLONG)
+ {
+ microseconds -= G_MAXLONG;
+ g_time_val_add (&end_time, G_MAXLONG);
+ }
+ g_time_val_add (&end_time, microseconds);
+
+ g_static_mutex_lock (&mutex);
+
+ if (!cond)
+ cond = g_cond_new ();
+
+ while (g_cond_timed_wait (cond, g_static_mutex_get_mutex (&mutex),
+ &end_time))
+ /* do nothing */;
+
+ g_static_mutex_unlock (&mutex);
+ }
+ else
+ {
+ struct timeval tv;
+ tv.tv_sec = microseconds / G_USEC_PER_SEC;
+ tv.tv_usec = microseconds % G_USEC_PER_SEC;
+ select(0, NULL, NULL, NULL, &tv);
+ }
+# endif /* !HAVE_NSLEEP */
+# endif /* !HAVE_NANOSLEEP */
+#endif /* !G_OS_WIN32 */
}
/**