From c27226bd2ac60e7141998610ad0e943fb46a7a33 Mon Sep 17 00:00:00 2001 From: Alexander Aksenov Date: Wed, 9 Nov 2016 15:45:47 +0300 Subject: [PATCH] GOT patcher: add profiling by apps comm Workaround for web apps Change-Id: I37d8d5a315da53929b77d1d63e15aaebf5044a57 Signed-off-by: Alexander Aksenov --- helper/got_patching.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/helper/got_patching.c b/helper/got_patching.c index 4bf0737..26c6c5d 100644 --- a/helper/got_patching.c +++ b/helper/got_patching.c @@ -188,6 +188,8 @@ static inline bool _is_ignored(const char *path) const char evdev_lib[] = "/lib/libevdev.so.2"; const char evdev[] = "/usr/lib/libevdev.so.2"; const char libc[] = "/lib/libc.so.6"; + const char libchromium[] = "/lib/libchromium-ewk.so"; + const char libminizip[] = "/lib/libminizip.so.1"; if (!strcmp(probe_lib, path) || !strcmp(event_lib, path) || @@ -203,7 +205,9 @@ static inline bool _is_ignored(const char *path) !strcmp(udev, path) || !strcmp(evdev_lib, path) || !strcmp(evdev, path) || - !strcmp(libc, path)) + !strcmp(libc, path) || + !strcmp(libchromium, path) || + !strcmp(libminizip, path)) return true; return false; -- 2.7.4