From 1ddcb2340a6c5d8ad12106b3e1281274e5e1812e Mon Sep 17 00:00:00 2001 From: Mike Blumenkrantz Date: Tue, 27 Jul 2010 03:59:04 +0000 Subject: [PATCH] fix threadless compile SVN revision: 50528 --- legacy/ecore/src/lib/ecore/ecore_thread.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/legacy/ecore/src/lib/ecore/ecore_thread.c b/legacy/ecore/src/lib/ecore/ecore_thread.c index dd7e05fc73..35722a5b43 100644 --- a/legacy/ecore/src/lib/ecore/ecore_thread.c +++ b/legacy/ecore/src/lib/ecore/ecore_thread.c @@ -636,9 +636,6 @@ EAPI Ecore_Thread *ecore_long_run(Ecore_Thread_Heavy_Cb func_heavy, */ worker.u.long_run.func_heavy = func_heavy; worker.u.long_run.func_notify = func_notify; - worker->hash = NULL; - pthread_cond_init(&worker->cond, NULL); - pthread_mutex_init(&worker->mutex, NULL); worker.u.long_run.notify = NULL; worker.func_cancel = func_cancel; worker.func_end = func_end;