From patchwork Thu Oct 27 08:38:07 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ken Werner X-Patchwork-Id: 4850 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 CA20423E0C for ; Thu, 27 Oct 2011 08:38:16 +0000 (UTC) Received: from mail-fx0-f52.google.com (mail-fx0-f52.google.com [209.85.161.52]) by fiordland.canonical.com (Postfix) with ESMTP id C07E1A18394 for ; Thu, 27 Oct 2011 08:38:16 +0000 (UTC) Received: by mail-fx0-f52.google.com with SMTP id n26so3464822faa.11 for ; Thu, 27 Oct 2011 01:38:16 -0700 (PDT) Received: by 10.223.36.193 with SMTP id u1mr14548876fad.27.1319704696490; Thu, 27 Oct 2011 01:38:16 -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.1.71 with SMTP id 7cs37907lak; Thu, 27 Oct 2011 01:38:16 -0700 (PDT) Received: by 10.213.19.136 with SMTP id a8mr303108ebb.16.1319704694023; Thu, 27 Oct 2011 01:38:14 -0700 (PDT) Received: from mtagate3.uk.ibm.com (mtagate3.uk.ibm.com. [194.196.100.163]) by mx.google.com with ESMTPS id w3si1336010eef.185.2011.10.27.01.38.13 (version=TLSv1/SSLv3 cipher=OTHER); Thu, 27 Oct 2011 01:38:13 -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 d06nrmr1507.portsmouth.uk.ibm.com (d06nrmr1507.portsmouth.uk.ibm.com [9.149.38.233]) by mtagate3.uk.ibm.com (8.13.1/8.13.1) with ESMTP id p9R8cDsi018266 for ; Thu, 27 Oct 2011 08:38:13 GMT Received: from d06av11.portsmouth.uk.ibm.com (d06av11.portsmouth.uk.ibm.com [9.149.37.252]) by d06nrmr1507.portsmouth.uk.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9R8cDHa2523182 for ; Thu, 27 Oct 2011 09:38:13 +0100 Received: from d06av11.portsmouth.uk.ibm.com (loopback [127.0.0.1]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9R8cDl0018252 for ; Thu, 27 Oct 2011 02:38:13 -0600 Received: from kiste.boeblingen.de.ibm.com (dyn-9-152-224-38.boeblingen.de.ibm.com [9.152.224.38]) by d06av11.portsmouth.uk.ibm.com (8.14.4/8.13.1/NCO v10.0 AVin) with ESMTP id p9R8cCbA018201; Thu, 27 Oct 2011 02:38:12 -0600 From: Ken Werner To: libunwind-devel@nongnu.org Subject: [PATCH 1/6] Include to have MAP_ANONYMOUS defined Date: Thu, 27 Oct 2011 10:38:07 +0200 Message-Id: <1319704692-4464-2-git-send-email-ken.werner@linaro.org> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1319704692-4464-1-git-send-email-ken.werner@linaro.org> References: <1319704692-4464-1-git-send-email-ken.werner@linaro.org> This change prevents libunwind_i.h from using a self-defined MAP_ANONYMOUS and therefore avoids collisions in case the system header gets pulled in later. Signed-off-by: Ken Werner --- include/libunwind_i.h | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/include/libunwind_i.h b/include/libunwind_i.h index d7353d1..6bbeb3e 100644 --- a/include/libunwind_i.h +++ b/include/libunwind_i.h @@ -53,6 +53,7 @@ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ #include #include #include +#include #if defined(HAVE_ENDIAN_H) # include