Revert previous fix for 3205
[mono.git] / mono / io-layer / handles.c
index 7e8d9844403ab475a67ce483b62f44e84e5f7efb..cab7e849c6a2ac324da3d52fbf5b0367d242b670 100644 (file)
@@ -333,11 +333,7 @@ static void _wapi_handle_init (struct _WapiHandleUnshared *handle,
        handle->ref = 1;
        
        if (!_WAPI_SHARED_HANDLE(type)) {
-               pthread_condattr_t attr;
-               pthread_condattr_init(&attr);
-               pthread_condattr_setclock(&attr, CLOCK_MONOTONIC);
                thr_ret = pthread_cond_init (&handle->signal_cond, NULL);
-               pthread_condattr_destroy(&attr);
                g_assert (thr_ret == 0);
                                
                thr_ret = mono_mutex_init (&handle->signal_mutex, NULL);