From f4c016e605b6a8293384564e6070d7da876a68d2 Mon Sep 17 00:00:00 2001 From: Ian Lance Taylor Date: Thu, 1 Dec 2011 23:50:48 +0000 Subject: runtime: Remove temporary runtime_cond_wait function. From-SVN: r181897 --- libgo/runtime/thread.c | 24 ------------------------ 1 file changed, 24 deletions(-) (limited to 'libgo/runtime/thread.c') diff --git a/libgo/runtime/thread.c b/libgo/runtime/thread.c index 459fc85..d43e224 100644 --- a/libgo/runtime/thread.c +++ b/libgo/runtime/thread.c @@ -90,27 +90,3 @@ runtime_minit(void) if(sigaltstack(&ss, nil) < 0) *(int *)0xf1 = 0xf1; } - -// Temporary functions, which will be removed when we stop using -// condition variables. - -void -runtime_cond_wait(pthread_cond_t* cond, pthread_mutex_t* mutex) -{ - int i; - - runtime_entersyscall(); - - i = pthread_cond_wait(cond, mutex); - if(i != 0) - runtime_throw("pthread_cond_wait"); - i = pthread_mutex_unlock(mutex); - if(i != 0) - runtime_throw("pthread_mutex_unlock"); - - runtime_exitsyscall(); - - i = pthread_mutex_lock(mutex); - if(i != 0) - runtime_throw("pthread_mutex_lock"); -} -- cgit v1.1