From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Campbell Subject: Re: [PATCH 1/6] tools/libxl: Introduce min and max macros Date: Fri, 20 Feb 2015 10:24:54 +0000 Message-ID: <1424427894.30924.169.camel@citrix.com> References: <1424277263-27745-1-git-send-email-andrew.cooper3@citrix.com> <1424277263-27745-2-git-send-email-andrew.cooper3@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1424277263-27745-2-git-send-email-andrew.cooper3@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Andrew Cooper Cc: Wei Liu , Ian Jackson , Xen-devel List-Id: xen-devel@lists.xenproject.org On Wed, 2015-02-18 at 16:34 +0000, Andrew Cooper wrote: > This is the same set used by libxc. > > Signed-off-by: Andrew Cooper Acked-by: Ian Campbell > CC: Ian Jackson > CC: Wei Liu > --- > tools/libxl/libxl_internal.h | 16 ++++++++++++++++ > 1 file changed, 16 insertions(+) > > diff --git a/tools/libxl/libxl_internal.h b/tools/libxl/libxl_internal.h > index 934465a..a2b6fb7 100644 > --- a/tools/libxl/libxl_internal.h > +++ b/tools/libxl/libxl_internal.h > @@ -108,6 +108,22 @@ > > #define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) > > +#define min(X, Y) ({ \ > + const typeof (X) _x = (X); \ > + const typeof (Y) _y = (Y); \ > + (void) (&_x == &_y); \ > + (_x < _y) ? _x : _y; }) > +#define max(X, Y) ({ \ > + const typeof (X) _x = (X); \ > + const typeof (Y) _y = (Y); \ > + (void) (&_x == &_y); \ > + (_x > _y) ? _x : _y; }) > + > +#define min_t(type,x,y) \ > + ({ type __x = (x); type __y = (y); __x < __y ? __x: __y; }) > +#define max_t(type,x,y) \ > + ({ type __x = (x); type __y = (y); __x > __y ? __x: __y; }) > + > #define LIBXL__LOGGING_ENABLED > > #ifdef LIBXL__LOGGING_ENABLED