From: Jinho, Lee Date: Thu, 28 Sep 2017 04:28:19 +0000 (+0900) Subject: [4.0] check if event is called from main thread always X-Git-Tag: accepted/tizen/4.0/unified/20171010.163010~3 X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-core.git;a=commitdiff_plain;h=7b7795e0ea89309977a2b1343553a72775d0fe05 [4.0] check if event is called from main thread always This reverts commit 2d7d2e258f73bb63f895c048b149aa180aae7b2d. Change-Id: I3fe1e5334840700fb189a90b7dd9782a7d0cc8c9 --- diff --git a/dali/internal/event/common/object-impl.h b/dali/internal/event/common/object-impl.h old mode 100644 new mode 100755 index 89fc73f..73e59e9 --- a/dali/internal/event/common/object-impl.h +++ b/dali/internal/event/common/object-impl.h @@ -562,7 +562,7 @@ protected: */ inline EventThreadServices& GetEventThreadServices() { - DALI_ASSERT_DEBUG( EventThreadServices::IsCoreRunning() ); + DALI_ASSERT_ALWAYS( EventThreadServices::IsCoreRunning() ); return mEventThreadServices; } @@ -575,7 +575,7 @@ protected: */ inline const EventThreadServices& GetEventThreadServices() const { - DALI_ASSERT_DEBUG( EventThreadServices::IsCoreRunning() ); + DALI_ASSERT_ALWAYS( EventThreadServices::IsCoreRunning() ); return mEventThreadServices; }