From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1HYJIa-0008Mv-Hh for qemu-devel@nongnu.org; Mon, 02 Apr 2007 05:58:04 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1HYJIZ-0008Lj-Rz for qemu-devel@nongnu.org; Mon, 02 Apr 2007 05:58:04 -0400 Received: from [199.232.76.173] (helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1HYJIZ-0008LR-Fp for qemu-devel@nongnu.org; Mon, 02 Apr 2007 05:58:03 -0400 Received: from phoenix.bawue.net ([193.7.176.60] helo=mail.bawue.net) by monty-python.gnu.org with esmtps (TLS-1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.60) (envelope-from ) id 1HYJFX-00029K-NS for qemu-devel@nongnu.org; Mon, 02 Apr 2007 05:54:56 -0400 Date: Mon, 2 Apr 2007 10:54:53 +0100 Subject: Re: [Qemu-devel] Patch: dyngen-exec.h for OpenBSD Message-ID: <20070402095453.GB24846@networkno.de> References: <20070321023900.GA13604@fries.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20070321023900.GA13604@fries.net> From: Thiemo Seufer Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Todd T. Fries" Cc: qemu-devel@nongnu.org Todd T. Fries wrote: > This is relative to the 20070319 snapshot. > > > --- dyngen-exec.h.orig Mon Feb 5 17:01:54 2007 > +++ dyngen-exec.h Sat Mar 10 16:39:39 2007 > @@ -27,11 +27,15 @@ > #define _FILEDEFED > #endif > > +#include "config.h" > + Doesn't seem to be necessary in the header. > /* NOTE: standard headers should be used with special care at this > point because host CPU registers are used as global variables. Some > host headers do not allow that. */ > #include > - > +#ifdef __OpenBSD__ > +#include > +#else > typedef unsigned char uint8_t; > typedef unsigned short uint16_t; > typedef unsigned int uint32_t; > @@ -61,6 +65,7 @@ typedef signed long int64_t; > typedef signed long long int64_t; > #endif > #endif > +#endif Is this specialcase really needed for OpenBSD? > /* XXX: This may be wrong for 64-bit ILP32 hosts. */ > typedef void * host_reg_t; > @@ -78,11 +83,15 @@ typedef void * host_reg_t; > #define UINT32_MAX (4294967295U) > #define UINT64_MAX ((uint64_t)(18446744073709551615)) > > +#ifdef __OpenBSD__ > +typedef struct __sFILE FILE; > +#else > typedef struct FILE FILE; > extern int fprintf(FILE *, const char *, ...); > extern int printf(const char *, ...); > #undef NULL > #define NULL 0 > +#endif Shouldn't this cover only the FILE typedef? Thiemo