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 839ebb5a11066d913af02b24bb0d237212b95f99
Author: Carsten Haitzler <[email protected]>
AuthorDate: Sun Feb 15 17:16:49 2026 +0000
allow env var to disable watchdog
useful for debugging i slow envs (eg valgrind)
---
src/bin/e_watchdog.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/bin/e_watchdog.c b/src/bin/e_watchdog.c
index f1b27bf94..fb0351589 100644
--- a/src/bin/e_watchdog.c
+++ b/src/bin/e_watchdog.c
@@ -89,6 +89,7 @@ _cb_watchdog_thread_pingpong_end(void *data EINA_UNUSED, Ecore_Thread *thread EI
E_API void
e_watchdog_begin(void)
{
+ if (getenv("E_NO_WATCHDOG")) return;
// set up main-loop ping-pong to a thread
_watchdog_pipe = ecore_pipe_add(_cb_watchdog_thread_pingpong_pipe, NULL);
// stop mainloop watching with fd handler as wer wait manually
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.