cond test: remove alarm() usage
[platform/upstream/glib.git] / glib / tests / cond.c
index 480e32e..f5215e5 100644 (file)
@@ -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... */