From patchwork Thu Oct 13 15:42:04 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ken Werner X-Patchwork-Id: 4661 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 6DFE423DEF for ; Thu, 13 Oct 2011 15:43:25 +0000 (UTC) Received: from mail-ey0-f180.google.com (mail-ey0-f180.google.com [209.85.215.180]) by fiordland.canonical.com (Postfix) with ESMTP id 64211A185ED for ; Thu, 13 Oct 2011 15:43:25 +0000 (UTC) Received: by eyg5 with SMTP id 5so217064eyg.11 for ; Thu, 13 Oct 2011 08:43:25 -0700 (PDT) Received: by 10.223.92.144 with SMTP id r16mr6813312fam.23.1318520545190; Thu, 13 Oct 2011 08:42:25 -0700 (PDT) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.152.24.41 with SMTP id r9cs265685laf; Thu, 13 Oct 2011 08:42:24 -0700 (PDT) Received: by 10.213.29.130 with SMTP id q2mr725003ebc.141.1318520529279; Thu, 13 Oct 2011 08:42:09 -0700 (PDT) Received: from mtagate3.uk.ibm.com (mtagate3.uk.ibm.com. [194.196.100.163]) by mx.google.com with ESMTPS id m36si195320weq.117.2011.10.13.08.42.09 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 13 Oct 2011 08:42:09 -0700 (PDT) Received-SPF: neutral (google.com: 194.196.100.163 is neither permitted nor denied by best guess record for domain of ken.werner@linaro.org) client-ip=194.196.100.163; Authentication-Results: mx.google.com; spf=neutral (google.com: 194.196.100.163 is neither permitted nor denied by best guess record for domain of ken.werner@linaro.org) smtp.mail=ken.werner@linaro.org Received: from d06nrmr1707.portsmouth.uk.ibm.com (d06nrmr1707.portsmouth.uk.ibm.com [9.149.39.225]) by mtagate3.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p9DFg8fY010780 for ; Thu, 13 Oct 2011 15:42:08 GMT Received: from d06av06.portsmouth.uk.ibm.com (d06av06.portsmouth.uk.ibm.com [9.149.37.217]) by d06nrmr1707.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9DFg8kN2072602 for ; Thu, 13 Oct 2011 16:42:08 +0100 Received: from d06av06.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av06.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9DMg8ms017584 for ; Thu, 13 Oct 2011 16:42:08 -0600 Received: from localhost.localdomain (dyn-9-152-224-39.boeblingen.de.ibm.com [9.152.224.39]) by d06av06.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p9DMg7Tg017557; Thu, 13 Oct 2011 16:42:07 -0600 From: Ken Werner To: libunwind-devel@nongnu.org Subject: [PATCH 1/3] Have dwarf.h include pthread.h Date: Thu, 13 Oct 2011 17:42:04 +0200 Message-Id: <1318520526-2874-2-git-send-email-ken.werner@linaro.org> X-Mailer: git-send-email 1.7.4.1 In-Reply-To: <1318520526-2874-1-git-send-email-ken.werner@linaro.org> References: <1318520526-2874-1-git-send-email-ken.werner@linaro.org> This is required for the pthread_mutex_t type that is beeing used in the dwarf_rs_cache structure. Signed-off-by: Ken Werner --- include/dwarf.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/dwarf.h b/include/dwarf.h index 3fe6b48..1d4f5df 100644 --- a/include/dwarf.h +++ b/include/dwarf.h @@ -40,6 +40,7 @@ struct dwarf_cursor; /* forward-declaration */ #include "dwarf-config.h" #include +#include /* DWARF expression opcodes. */