Re: Linux 2.6.0-test6

From: Geert Uytterhoeven
Date: Mon Sep 29 2003 - 10:16:47 EST


On Mon, 29 Sep 2003, Chris Friesen wrote:
> Russell King wrote:
> > If a header has something like these:
> >
> > struct my_headers_struct {
> > struct task_struct *tsk;
> > };
> >
> > void my_function(struct task_struct *tsk);
> >
> > and gcc warns that "struct task_struct" has not been declared, please
> > don't think about adding another header. Just declare the structure
> > in the header file which needs it like this:
> >
> > struct task_struct;
>
> If I do that, make a change to task_struct, then run make, will the file
> get rebuilt?

No. But using that definition all you can do (without warnings) is passing
pointers to the struct around, which is OK.

If you want to play with the internals of the structure, you have to include
the right header file anyway.

Gr{oetje,eeting}s,

Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@xxxxxxxxxxxxxx

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds

-
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/