projects
/
platform
/
core
/
appfw
/
aul-1.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f89f663
)
Remove init process of fast launch
31/302731/1
author
Changgyu Choi
<changyu.choi@samsung.com>
Wed, 13 Dec 2023 01:02:00 +0000
(10:02 +0900)
committer
Changgyu Choi
<changyu.choi@samsung.com>
Wed, 13 Dec 2023 01:02:00 +0000
(10:02 +0900)
The logic to access the database at the beginning of booting is disadvantageous for performance.
This patch improves this by omitting the check for whether the app is installed if it is a fast launch.
Change-Id: I9827e43cda610d633258366ad420a7abd9e3d4d7
Signed-off-by: Changgyu Choi <changyu.choi@samsung.com>
tool/app_launcher/app_launcher.c
patch
|
blob
|
history
diff --git
a/tool/app_launcher/app_launcher.c
b/tool/app_launcher/app_launcher.c
index 7001f1f1b50d0c756e7616d4d25cade909710688..d2da2f3ed380a551b39ac5697aa6ced470650a0e 100644
(file)
--- a/
tool/app_launcher/app_launcher.c
+++ b/
tool/app_launcher/app_launcher.c
@@
-753,7
+753,7
@@
static struct command cmd_table[] = {
},
[CMD_FAST_START] = {
.name = "fast-start",
- .init =
__cmd_common_init
,
+ .init =
NULL
,
.run = __cmd_fast_start_run,
.finish = __cmd_fast_start_finish
},