From: Joonbum Ko Date: Thu, 21 Oct 2021 11:44:05 +0000 (+0900) Subject: Change the timeout limit to 200ms. X-Git-Tag: submit/tizen/20211028.011250~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=395fc2833a72f76b5c6286189599f4de752b83b1;p=platform%2Fcore%2Fuifw%2Flibtpl-egl.git Change the timeout limit to 200ms. Change-Id: I05669288993d565f821594e19fcc404f8c02b4a5 Signed-off-by: Joonbum Ko --- diff --git a/src/tpl_wl_egl_thread.c b/src/tpl_wl_egl_thread.c index 0c27e50..11c7f16 100755 --- a/src/tpl_wl_egl_thread.c +++ b/src/tpl_wl_egl_thread.c @@ -2027,7 +2027,7 @@ _tpl_wl_egl_surface_buffer_clear(tpl_wl_egl_surface_t *wl_egl_surface) tpl_gmutex_unlock(&wl_egl_display->wl_event_mutex); wait_result = tpl_cond_timed_wait(&wl_egl_buffer->cond, &wl_egl_buffer->mutex, - 50); /* 50ms */ + 200); /* 200ms */ tpl_gmutex_lock(&wl_egl_display->wl_event_mutex); if (wait_result == TPL_ERROR_TIME_OUT)