From mboxrd@z Thu Jan 1 00:00:00 1970 From: Vincent Hanquez Subject: Re: USB virt 2.6 split driver patch series Date: Mon, 21 Nov 2005 15:36:12 +0100 Message-ID: <20051121143612.GC25045@snarc.org> References: <1132579104.31295.110.camel@localhost.localdomain> <20051121134940.GA25045@snarc.org> <200511210925.21295.dfeustel@verizon.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline In-Reply-To: <200511210925.21295.dfeustel@verizon.net> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: dfeustel@mindspring.com Cc: harry , xen-devel@lists.xensource.com, Vincent Hanquez List-Id: xen-devel@lists.xenproject.org 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