From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wr0-f194.google.com (mail-wr0-f194.google.com [209.85.128.194]) by dpdk.org (Postfix) with ESMTP id 68F982C49 for ; Wed, 15 Mar 2017 09:39:32 +0100 (CET) Received: by mail-wr0-f194.google.com with SMTP id u108so1128568wrb.2 for ; Wed, 15 Mar 2017 01:39:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=mime-version:sender:in-reply-to:references:from:date:message-id :subject:to:cc; bh=wYfBH1yLaxRkW9KoPY3rIw74ztu/ZfGttaijKU2cE90=; b=cKQRdJJ6nMT7QRVA7WC5mQq+8PuD9Xj1MXCom+pWKRB/Xrh0amqEHJskOTB3/0tmrr fmXSsOKaZuyVO9c1v7javtv/fxGTol6GR64izqtAoFBMecVTdE9QfNEdRfvLevS8oe4l ziMqKEVgs0F/SfiaWLirma5UDK/E60LsIZ8SFKmAoPwHMeoE3OfcrHTlkW6Iv2CxW1zf 1/xS1bK31xm/48WK6/2XkdLWzc7lGwFiE0vUowrWHMGWtQtRV5s+bHZzsQrsFkMDiQgt t2bEFZX//tp0x5ySUuCq67dn0puPqXbQRAHCy9nzqXO3AWJp/0rFj4bg01CUmsDf7mO6 6fZg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:sender:in-reply-to:references:from :date:message-id:subject:to:cc; bh=wYfBH1yLaxRkW9KoPY3rIw74ztu/ZfGttaijKU2cE90=; b=cNm8WfNL+8Ugtn2EvmKDTFlw8wAsNt+DqQJFbz8ej3JvRAzPTbwlb6dHjhrbpsvnLm 8JT6tcyr6B6/77j5col7KhSTphPMZdEh0nUerPeMybuf/IRZK7KBP1x5NNooQtVq0yHe B4K1x6SSmovX0RjSp6cmhEBliYPHN6SMAx/mIU+5b46U/4ycIT0UJ0RtA4v3LU0Wqn7P qJouQ3jd/NVCgFpmb2ygjOX9ZX8FIngNdPy6nmHq4ODpOTOpByvTLAioMFJP+naSDbhy to3KDjusJKNjMsfZvT/mspWKVcZi8DWdqAlCKSRUsj5NVducxBhf/Yf7lOX2QOMT5SJr eT6w== X-Gm-Message-State: AFeK/H2mF8DQgwyWgt9rfY3ZN7TODTYnQydNy0iLoLB3HljLM56NdSIsLL73WiCu1/UwGKEBbJYxNWtItIbsvQ== X-Received: by 10.223.175.81 with SMTP id z75mr1781680wrc.3.1489567172134; Wed, 15 Mar 2017 01:39:32 -0700 (PDT) MIME-Version: 1.0 Sender: jblunck@gmail.com Received: by 10.28.211.20 with HTTP; Wed, 15 Mar 2017 01:39:31 -0700 (PDT) In-Reply-To: <1489395568-4664-2-git-send-email-wei.dai@intel.com> References: <1489395568-4664-1-git-send-email-wei.dai@intel.com> <1489395568-4664-2-git-send-email-wei.dai@intel.com> From: Jan Blunck Date: Wed, 15 Mar 2017 09:39:31 +0100 X-Google-Sender-Auth: se4yZxH82OrC6jyQrN9CpFZqsAE Message-ID: To: Wei Dai Cc: dev , Thomas Monjalon , "Mcnamara, John" , David Marchand , "Tan, Raymond" Content-Type: text/plain; charset=UTF-8 Subject: Re: [dpdk-dev] [PATCH v2 1/3] examples/performance-thread: remove reference to execinfo.h X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 15 Mar 2017 08:39:32 -0000 On Mon, Mar 13, 2017 at 9:59 AM, Wei Dai wrote: > There is no function to refer any part of execinfo.h, so remove the > reference to it. And there is no this file in musl. So need to > remove it to support musl. > > The musl is an alternative LIBC to GLIBC and provides the > standard C/POSIX library and extensions. > The musl can be got from http://www.musl-libc.org > > Signed-off-by: Wei Dai > --- > examples/performance-thread/common/lthread_tls.c | 1 - > 1 file changed, 1 deletion(-) > > diff --git a/examples/performance-thread/common/lthread_tls.c b/examples/performance-thread/common/lthread_tls.c > index 6876f83..47505f2 100644 > --- a/examples/performance-thread/common/lthread_tls.c > +++ b/examples/performance-thread/common/lthread_tls.c > @@ -42,7 +42,6 @@ > #include > #include > #include > -#include > #include > > #include > -- > 2.7.4 > Acked-by: Jan Blunck