From ab602cc8bceed075aebacd1a344bb03fa68b219c Mon Sep 17 00:00:00 2001 From: Joonbum Ko Date: Thu, 25 Mar 2021 10:36:18 +0900 Subject: [PATCH] Modified the log output from gsource_finalize. Change-Id: I491f012afb0aba638cb40b3f4f47840dfe36dac4 Signed-off-by: Joonbum Ko --- src/tpl_wl_egl_thread.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/tpl_wl_egl_thread.c b/src/tpl_wl_egl_thread.c index 4b29924..6147716 100755 --- a/src/tpl_wl_egl_thread.c +++ b/src/tpl_wl_egl_thread.c @@ -298,8 +298,9 @@ __thread_func_tdm_finalize(tpl_gsource *gsource) wl_egl_display = (tpl_wl_egl_display_t *)tpl_gsource_get_data(gsource); - TPL_LOG_T("WL_EGL", "tdm_destroy| wl_egl_display(%p) tdm_client(%p)", - wl_egl_display, wl_egl_display->tdm_client); + TPL_LOG_T("WL_EGL", + "tdm_destroy| wl_egl_display(%p) tdm_client(%p) tpl_gsource(%p)", + wl_egl_display, wl_egl_display->tdm_client, gsource); if (wl_egl_display->tdm_client) { tdm_client_destroy(wl_egl_display->tdm_client); @@ -1508,8 +1509,8 @@ __thread_func_surf_finalize(tpl_gsource *gsource) _thread_wl_egl_surface_fini(wl_egl_surface); - TPL_DEBUG("[FINALIZE] gsource(%p) wl_egl_surface(%p)", - gsource, wl_egl_surface); + TPL_DEBUG("[FINALIZE] wl_egl_surface(%p) tpl_gsource(%p)", + wl_egl_surface, gsource); } static tpl_gsource_functions surf_funcs = { -- 2.7.4