Ecore Con: Fix ecore_con_local hangs on Windows.

Since the move to eo, ecore_con_local hangs on Windows, hence edje_cc can
not compile edc files (e.g.).
Problem was a loop that was used to finish some threads which is now endless.

For now, comment out that loop

@fix
This commit is contained in:
Vincent Torri 2015-07-07 12:34:40 +02:00 committed by Tom Hacohen
parent fe4e464fb6
commit 74cbbd204c
1 changed files with 4 additions and 2 deletions

View File

@ -488,8 +488,10 @@ ecore_con_local_win32_server_del(Ecore_Con_Server *obj)
return;
svr->read_stop = 1;
while (!svr->read_stopped)
Sleep(100);
/* FIXME: we should try to stop these thread in one way or another */
/* should we use ecore_thread ? */
/* while (!svr->read_stopped) */
/* Sleep(100); */
if (svr->event_peek)
CloseHandle(svr->event_peek);