From patchwork Mon Mar 21 22:07:17 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alon Levy X-Patchwork-Id: 87838 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 C0D02B6F72 for ; Tue, 22 Mar 2011 09:09:38 +1100 (EST) Received: from localhost ([127.0.0.1]:58822 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1nHq-000615-96 for incoming@patchwork.ozlabs.org; Mon, 21 Mar 2011 18:09:18 -0400 Received: from [140.186.70.92] (port=58650 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Q1nGo-0005tz-AS for qemu-devel@nongnu.org; Mon, 21 Mar 2011 18:08:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Q1nGn-0000Gm-EE for qemu-devel@nongnu.org; Mon, 21 Mar 2011 18:08:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:16263) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Q1nGm-0000Gd-N1 for qemu-devel@nongnu.org; Mon, 21 Mar 2011 18:08:13 -0400 Received: from int-mx10.intmail.prod.int.phx2.redhat.com (int-mx10.intmail.prod.int.phx2.redhat.com [10.5.11.23]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id p2LM8CNC025258 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=OK) for ; Mon, 21 Mar 2011 18:08:12 -0400 Received: from playa.redhat.com (vpn-200-15.tlv.redhat.com [10.35.200.15]) by int-mx10.intmail.prod.int.phx2.redhat.com (8.14.4/8.14.4) with ESMTP id p2LM80VB027322 for ; Mon, 21 Mar 2011 18:08:11 -0400 From: Alon Levy To: qemu-devel@nongnu.org Date: Tue, 22 Mar 2011 00:07:17 +0200 Message-Id: <1300745246-4701-3-git-send-email-alevy@redhat.com> In-Reply-To: <1300745246-4701-1-git-send-email-alevy@redhat.com> References: <1300745246-4701-1-git-send-email-alevy@redhat.com> X-Scanned-By: MIMEDefang 2.68 on 10.5.11.23 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 v22 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). --- 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;