X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=filter_common.c;h=616a7601a76e30db8ccfaeca408cf60f5dc36fab;hp=d570e648788bf1d90253aa1d9b96aa310803d5af;hb=f1420ef5b0c5db7adb5109885ac04745365a1cfa;hpb=3cc5654fec9db630eac146f8475067228efe51ae diff --git a/filter_common.c b/filter_common.c index d570e648..616a7601 100644 --- a/filter_common.c +++ b/filter_common.c @@ -132,16 +132,16 @@ void print_filter_helps(unsigned flags) * Set select timeout of the scheduler. * * \param s The scheduler. - * \param t The task struct of this filter. + * \param context Pointer to the filter node (task context). * * This looks at the status of the btr node of the filter. If data is available * in the input queue of the filter, or if an error occurred, a minimal timeout * for the next select call is requested from the scheduler. Otherwise the * scheduler timeout is left unchanged. */ -void generic_filter_pre_select(struct sched *s, struct task *t) +void generic_filter_pre_select(struct sched *s, void *context) { - struct filter_node *fn = task_context(t); + struct filter_node *fn = context; if (btr_node_status(fn->btrn, fn->min_iqs, BTR_NT_INTERNAL) != 0) sched_min_delay(s);