From patchwork Wed Mar 23 13:19:44 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alon Levy X-Patchwork-Id: 88077 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id C0BF31007D3 for ; Thu, 24 Mar 2011 00:28:07 +1100 (EST) Received: from localhost ([127.0.0.1]:57100 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q2O62-0003wo-9h for incoming@patchwork.ozlabs.org; Wed, 23 Mar 2011 09:27:34 -0400 Received: from [140.186.70.92] (port=60640 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q2NzP-0001LF-TL for qemu-devel@nongnu.org; Wed, 23 Mar 2011 09:20:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q2NzE-0001cD-OZ for qemu-devel@nongnu.org; Wed, 23 Mar 2011 09:20:39 -0400 Received: from mx1.redhat.com ([209.132.183.28]:10207) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q2NzE-0001bt-EN for qemu-devel@nongnu.org; Wed, 23 Mar 2011 09:20:32 -0400 Received: from int-mx09.intmail.prod.int.phx2.redhat.com (int-mx09.intmail.prod.int.phx2.redhat.com [10.5.11.22]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2NDKVO9030605 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Wed, 23 Mar 2011 09:20:31 -0400 Received: from playa.tlv.redhat.com (dhcp-3-110.tlv.redhat.com [10.35.3.110]) by int-mx09.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p2NDKRXh028743 for ; Wed, 23 Mar 2011 09:20:30 -0400 From: Alon Levy To: qemu-devel@nongnu.org Date: Wed, 23 Mar 2011 15:19:44 +0200 Message-Id: <1300886393-2799-3-git-send-email-alevy@redhat.com> In-Reply-To: <1300886393-2799-1-git-send-email-alevy@redhat.com> References: <1300886393-2799-1-git-send-email-alevy@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.22 X-detected-operating-system: by eggs.gnu.org: Genre and OS details not recognized. X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v23 02/11] qemu-thread.h: include inttypes.h X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org qemu-thread.h relies on uint64_t being defined, but doesn't include inttypes.h explicitly. This makes it easier to use it from vscclient (part of libcacard). Acked-by: Jes Sorensen --- qemu-thread.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/qemu-thread.h b/qemu-thread.h index edc7ab6..0a73d50 100644 --- a/qemu-thread.h +++ b/qemu-thread.h @@ -1,6 +1,8 @@ #ifndef __QEMU_THREAD_H #define __QEMU_THREAD_H 1 +#include + typedef struct QemuMutex QemuMutex; typedef struct QemuCond QemuCond; typedef struct QemuThread QemuThread;