From 3a209d530568ddfb448d3b55e506022245e394b4 Mon Sep 17 00:00:00 2001 From: Rainer Gerhards Date: Fri, 14 Dec 2007 17:15:35 +0000 Subject: added thread activation --- modules.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'modules.c') diff --git a/modules.c b/modules.c index 6869ede6..9a3786f2 100644 --- a/modules.c +++ b/modules.c @@ -255,6 +255,7 @@ rsRetVal doModInit(rsRetVal (*modInit)(int, int*, rsRetVal(**)(), rsRetVal(*)()) /* ... and now the module-specific interfaces */ switch(pNew->eType) { case eMOD_IN: + CHKiRet((*pNew->modQueryEtryPt)((uchar*)"runInput", &pNew->mod.im.runInput)); break; case eMOD_OUT: CHKiRet((*pNew->modQueryEtryPt)((uchar*)"doAction", &pNew->mod.om.doAction)); @@ -293,6 +294,7 @@ finalize_it: /* Print loaded modules. This is more or less a * debug or test aid, but anyhow I think it's worth it... * This only works if the dbgprintf() subsystem is initialized. + * TODO: update for new input modules! */ void modPrintList(void) { -- cgit