summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRyan Lortie <desrt@desrt.ca>2014-03-05 09:04:00 -0500
committerRyan Lortie <desrt@desrt.ca>2014-03-05 09:05:42 -0500
commitc9cda16a4f607bf9b6498051d2b83aad99e391e4 (patch)
tree8da9b813e4fc97e4e3719e918a798ca332237e80
parentfd8c1a306725ed7f877c0ec6d5c27f5436c5941f (diff)
cond test: remove alarm() usage
This means that the test can't build on Windows (and we do want it there). This will be properly resolved with bug 725266, but let's not block the build before then. https://bugzilla.gnome.org/show_bug.cgi?id=724859
-rw-r--r--glib/tests/cond.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/glib/tests/cond.c b/glib/tests/cond.c
index 480e32e74..f5215e518 100644
--- a/glib/tests/cond.c
+++ b/glib/tests/cond.c
@@ -25,8 +25,6 @@
#include <glib.h>
-#include <unistd.h>
-
static GCond cond;
static GMutex mutex;
static volatile gint next;
@@ -251,9 +249,6 @@ test_wait_until (void)
g_mutex_init (&lock);
g_cond_init (&cond);
- /* Don't wait forever... */
- alarm (60);
-
until = g_get_monotonic_time () + G_TIME_SPAN_SECOND;
/* Could still have spurious wakeups, so we must loop... */