From a97ddd0ff460aa8d67fd6341ff44d3798a6e9dc4 Mon Sep 17 00:00:00 2001 From: Hwankyu Jhun Date: Mon, 13 Aug 2018 18:06:54 +0900 Subject: [PATCH] Remove watchdog initializer The watchdog timer should be enabled by app developers. This patch removes calling appcore_watchdog_enable(). Change-Id: Iab58ed6403704f0cf2b81fa43929196941c54472 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 4507e23..33bd0bc 100644 --- a/src/base/appcore_base.c +++ b/src/base/appcore_base.c @@ -1083,8 +1083,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_watchdog_enable(); - if (__context.ops.create) { traceBegin(TTRACE_TAG_APPLICATION_MANAGER, "APPCORE:CREATE"); r = __context.ops.create(__context.data); -- 2.7.4