From 6ad2f1f84b3cb809753c1a3f606a74d41ee07e92 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Tue, 2 Apr 2019 09:56:26 +0900 Subject: [PATCH] Postpone base control initialization To improve launching performance, calling the appcore_base_control_init() function is removed in the appcore_base_init() function. The function is called when calling the appcore_base_control_add() function. Change-Id: Iafa109c012496c5fc978eacd0719f3d785610ba7 Signed-off-by: Hwankyu Jhun --- src/base/appcore_base.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/base/appcore_base.c b/src/base/appcore_base.c index 4bfcabd..0550161 100644 --- a/src/base/appcore_base.c +++ b/src/base/appcore_base.c @@ -1086,8 +1086,6 @@ EXPORT_API int appcore_base_init(appcore_base_ops ops, int argc, char **argv, vo if (__context.ops.set_i18n) __context.ops.set_i18n(__context.data); - appcore_base_control_init(); - if (__context.ops.create) { traceBegin(TTRACE_TAG_APPLICATION_MANAGER, "APPCORE:CREATE"); r = __context.ops.create(__context.data); -- 2.7.4