aboutsummaryrefslogtreecommitdiffstats
path: root/erts/lib_src
diff options
context:
space:
mode:
authorRickard Green <[email protected]>2010-09-07 15:19:56 +0200
committerRickard Green <[email protected]>2010-09-08 22:11:00 +0200
commite609bf8e5839330f6c52e548541d58ce4da7f48a (patch)
tree5625fb207e1b47bea1834e82a0342019d8455b3a /erts/lib_src
parent4e416cc50d9117aaaf46789259489d8cc4440a33 (diff)
downloadotp-e609bf8e5839330f6c52e548541d58ce4da7f48a.tar.gz
otp-e609bf8e5839330f6c52e548541d58ce4da7f48a.tar.bz2
otp-e609bf8e5839330f6c52e548541d58ce4da7f48a.zip
Remove unused variables
Diffstat (limited to 'erts/lib_src')
-rw-r--r--erts/lib_src/common/ethr_mutex.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/erts/lib_src/common/ethr_mutex.c b/erts/lib_src/common/ethr_mutex.c
index 4a588dd705..284f85da31 100644
--- a/erts/lib_src/common/ethr_mutex.c
+++ b/erts/lib_src/common/ethr_mutex.c
@@ -1006,7 +1006,6 @@ enqueue_mtx(ethr_mutex *mtx, ethr_ts_event *tse_start, ethr_ts_event *tse_end)
int
ethr_cond_init_opt(ethr_cond *cnd, ethr_cond_opt *opt)
{
- int res;
#if ETHR_XCHK
if (!cnd) {
ETHR_ASSERT(0);
@@ -1106,7 +1105,6 @@ ethr_cond_signal(ethr_cond *cnd)
void
ethr_cond_broadcast(ethr_cond *cnd)
{
- int res;
int got_all;
ethr_ts_event *tse;
ETHR_ASSERT(!ethr_not_inited__);
@@ -1174,7 +1172,6 @@ ethr_cond_wait(ethr_cond *cnd, ethr_mutex *mtx)
{
int woken;
int scnt;
- int res;
void *udata = NULL;
ethr_ts_event *tse;