qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Yuval Shaia <yuval.shaia@oracle.com>
To: Samuel Thibault <samuel.thibault@gnu.org>
Cc: peter.maydell@linaro.org, qemu-devel@nongnu.org, jan.kiszka@siemens.com
Subject: Re: [Qemu-devel] [PATCH] cutils: Define min and max marcos
Date: Mon, 28 Nov 2016 00:49:00 +0200	[thread overview]
Message-ID: <20161127224859.GA14196@yuval-lap> (raw)
In-Reply-To: <20161127222041.GZ18656@var.home>

On Sun, Nov 27, 2016 at 11:20:41PM +0100, Samuel Thibault wrote:
> Yuval Shaia, on Mon 28 Nov 2016 00:18:26 +0200, wrote:
> > On Sun, Nov 27, 2016 at 03:10:04PM +0100, Samuel Thibault wrote:
> > > Yuval Shaia, on Fri 25 Nov 2016 12:31:26 +0200, wrote:
> > > > -#ifndef _WIN32
> > > > -#define min(x,y) ((x) < (y) ? (x) : (y))
> > > > -#define max(x,y) ((x) > (y) ? (x) : (y))
> > > > -#endif
> > > 
> > > This has protection against _WIN32, I guess that was on purpose.
> > 
> > I'm not following.
> > Are you suggesting that this was there to prevent code from compiling when
> > _WIN32 was define?
> 
> I mean that min and max are already defined on windows:
> 
> https://msdn.microsoft.com/en-us/library/windows/desktop/dd757290%28v=vs.85%29.aspx
> 
> > > Perhaps qemu should avoid risking a clash with OS-provided min/max
> > > macros, by renaming these to qemu_min/max?
> > 
> > On MIN and MAX?
> 
> Yes.
> 
> > I have noticed some other approach which was taken in osdep.h with ifdef,
> > for example:
> > 193 #ifndef ROUND_UP
> > 194 #define ROUND_UP(n,d) (((n) + (d) - 1) & -(d))
> > 195 #endif
> 
> That could probably be enough for our use indeed.

Great.
Can you take a look at my revised patch?
{disas,slirp}: Replace min/max with MIN/MAX macros

> 
> Samuel

  reply	other threads:[~2016-11-27 22:49 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-11-25 10:31 [Qemu-devel] [PATCH] cutils: Define min and max marcos Yuval Shaia
2016-11-25 15:26 ` Markus Armbruster
2016-11-27 14:10 ` Samuel Thibault
2016-11-27 22:18   ` Yuval Shaia
2016-11-27 22:20     ` Samuel Thibault
2016-11-27 22:49       ` Yuval Shaia [this message]
2016-11-29  6:43 ` no-reply

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20161127224859.GA14196@yuval-lap \
    --to=yuval.shaia@oracle.com \
    --cc=jan.kiszka@siemens.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=samuel.thibault@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).