Re: [PATCH 2/4] WorkStruct: Typedef the work function prototype

From: David Howells
Date: Mon Nov 20 2006 - 10:50:43 EST


Stefan Richter <stefanr@xxxxxxxxxxxxxxxxx> wrote:

> > Define a type for the work function prototype. It's not only kept in the
> > work_struct struct, it's also passed as an argument to several functions.
>
> If so, it should certainly also be used in the declarations and
> definitions of the work functions.

Is this what you mean?:

work_func_t do_my_work
{
...
}

DECLARE_WORK(my_work, do_my_work);

void do_it(void)
{
schedule_work(&my_work);
}

David
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/