This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository enlightenment.
View the commit online.
commit 240f4a0114f4f093826e9abeba0aed2e0c332db2
Author: Carsten Haitzler <ras...@rasterman.com>
AuthorDate: Fri Jul 18 11:28:46 2025 +0100
watchdog - move begin to as early as possible to find hangs in start
---
src/bin/e_main.c | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/src/bin/e_main.c b/src/bin/e_main.c
index 9fa288f46..b5e495b7f 100644
--- a/src/bin/e_main.c
+++ b/src/bin/e_main.c
@@ -384,6 +384,8 @@ main(int argc, char **argv)
TS("Ecore Init Done");
_e_main_shutdown_push(ecore_shutdown);
+ e_watchdog_begin();
+
TS("E Comp Canvas Intercept Init");
e_comp_canvas_intercept();
TS("E Comp Canvas Intercept Init Done");
@@ -1127,7 +1129,6 @@ main(int argc, char **argv)
E_LIST_FOREACH(e_comp->zones, e_comp_canvas_zone_restarted);
}
- e_watchdog_begin();
TS("MAIN LOOP AT LAST");
if (!setjmp(x_fatal_buff))
{
@@ -1136,7 +1137,6 @@ main(int argc, char **argv)
}
else
CRI("FATAL: X Died. Connection gone. Abbreviated Shutdown\n");
- e_watchdog_end();
e_main_loop_running = EINA_FALSE;
inloop = EINA_FALSE;
@@ -1149,6 +1149,8 @@ main(int argc, char **argv)
e_remember_internal_save();
e_comp_internal_save();
+ e_watchdog_end();
+
_e_main_shutdown(0);
if (restart)
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.