From 7010c6794596df5c85c6ebfdf6f290e25cabb031 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Mon, 17 Apr 2006 10:30:00 +0200 Subject: [PATCH] Moved calling PluginManager.MainThreadHook() to the end of the main loop --- vdr.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vdr.c b/vdr.c index 2b8b484d..d655e736 100644 --- a/vdr.c +++ b/vdr.c @@ -22,7 +22,7 @@ * * The project's page is at http://www.cadsoft.de/vdr * - * $Id: vdr.c 1.261 2006/04/17 09:23:23 kls Exp $ + * $Id: vdr.c 1.262 2006/04/17 10:30:00 kls Exp $ */ #include @@ -830,8 +830,6 @@ int main(int argc, char *argv[]) // Queued messages: if (!Skins.IsOpen()) Skins.ProcessQueuedMessages(); - // Main thread hooks of plugins: - PluginManager.MainThreadHook(); // User Input: cOsdObject *Interact = Menu ? Menu : cControl::Control(); eKeys key = Interface->GetKey((!Interact || !Interact->NeedsFastResponse()) && time(NULL) - LastCamMenu > LASTCAMMENUTIMEOUT); @@ -1168,6 +1166,8 @@ int main(int argc, char *argv[]) PluginManager.Housekeeping(); } } + // Main thread hooks of plugins: + PluginManager.MainThreadHook(); } if (Interrupted) isyslog("caught signal %d", Interrupted);