From: Jaroslav Kysela Date: Sat, 2 Mar 2019 20:23:37 +0000 (+0100) Subject: tvh thread: increase the default watchdog timeout to 15 seconds X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7aeece632a06891c4a15cc286e199697c59e5a9a;p=thirdparty%2Ftvheadend.git tvh thread: increase the default watchdog timeout to 15 seconds --- diff --git a/src/tvh_thread.c b/src/tvh_thread.c index d942fbda4..70cfcb69d 100644 --- a/src/tvh_thread.c +++ b/src/tvh_thread.c @@ -501,7 +501,7 @@ static void *tvh_thread_watch_thread(void *aux) const char *s; s = getenv("TVHEADEND_THREAD_WATCH_LIMIT"); - limit = s ? atol(s) : 5; + limit = s ? atol(s) : 15; limit = MINMAX(limit, 5, 120); while (!atomic_get(&tvhwatch_done)) { pthread_mutex_lock(&thrwatch_mutex);