|
|
|
|
|
|
|
|
|
|
xen-devel
Re: [Xen-devel] USB virt 2.6 split driver patch series
On Mon, Nov 21, 2005 at 09:25:20AM -0500, Dave Feustel wrote:
> Could you post an example (from the patches, if possible) of
> an "anonymous inline function"?
that what you call code block that are nested into another one
without having any do, while, if, for ...
they are almost like an inlined function in term of code and as they
don't got a label, that make them anonymous.
example:
int fct(void)
{
int i;
...
{
int j;
...
}
...
}
the patches contains lots of them everywhere.
--
Vincent Hanquez
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
|
|
|
|