From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f42.google.com (mail-wm0-f42.google.com [74.125.82.42]) by dpdk.org (Postfix) with ESMTP id 369508E9E for ; Tue, 24 Nov 2015 18:55:33 +0100 (CET) Received: by wmec201 with SMTP id c201so221272173wme.0 for ; Tue, 24 Nov 2015 09:55:33 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id:organization:user-agent :in-reply-to:references:mime-version:content-transfer-encoding :content-type; bh=9/Vg6+y+qNyFb2EPrt8rc4rSpihQbU8B09ipqOBylbs=; b=y8yaOAkmowoWTfw1cvkZk+VAbwtWSudXc5XHc2lk2SVu8zJIXXsrLIHSvh4aET/t9f TdhyeuhsCZFeshqrHUGLWVfAM0+GUEt3JceX9oVt6y54bXrb2JhJVKxhCa7WFjXMGj5d nvQ7LoSvXmsdEu8abllZkNPnqqfhWQWA1/gcBBLx5JX2X+NHN1Z5t5nmcUjMBg8mi/oe K5E6oeHvey4GYijbNhGOe0gFeDmoR5mTKc/h/MHnAi7qgTmkj8rdsNXeJNhT9keB76CO qGmvtrDoPaUHHp/WC6L7wp75Eu7T4sbLufOGwv7Ps0oN8AXs8JNlsP70p/aja28KeJu2 CZSQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20130820; h=x-gm-message-state:from:to:cc:subject:date:message-id:organization :user-agent:in-reply-to:references:mime-version :content-transfer-encoding:content-type; bh=9/Vg6+y+qNyFb2EPrt8rc4rSpihQbU8B09ipqOBylbs=; b=UJqKE7L8ZOZ7WEPbUH4R2OkDJIp/fyxhZaJ6rMkaesskInq+GboQxfYSJeahjtgM/W B7T7lf3DTSZjJ7GgDfWS6/hhl3s/e1BbT+7Mo1+uig5yj1LQ/vjdIAjzmAw5yhVgkKfC qyRKtFoHtHk49CX1uJFt19Gt6gFhV+aq79ZViOh9xWmYLLN2JnHJrTU8J6umU6ZzJ+iN LY6HTEqMqrOLGhmjsHlT+YCmUY+PJXo0wcnxdHnI0BfIYWEKQpwssEULw0zHd6HLBskN Hptc3MiW5/V0TZToLXGEuKVzjHKuXtSIaKGjbealdBUVyo3GbsKYIMFao7pEBIwVAOno AVhA== X-Gm-Message-State: ALoCoQmjg/BJNu2Chdsd9uLxOjyodpn6kzD6I2aHxYvx6GXfZf5ZLkmg8DlGPwKcR+0lOgvK683R X-Received: by 10.194.243.170 with SMTP id wz10mr44037262wjc.80.1448387733064; Tue, 24 Nov 2015 09:55:33 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id 67sm11315736wmm.6.2015.11.24.09.55.32 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 24 Nov 2015 09:55:32 -0800 (PST) From: Thomas Monjalon To: Ferruh Yigit Date: Tue, 24 Nov 2015 18:54:15 +0100 Message-ID: <1736209.Pnlj1Vup4i@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1447955066-17131-1-git-send-email-ferruh.yigit@intel.com> References: <20151119165935.GA4888@sivlogin002.ir.intel.com> <1447955066-17131-1-git-send-email-ferruh.yigit@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH] eal: fix compile error for old glibc caused by pthread_setname_np() X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 24 Nov 2015 17:55:33 -0000 2015-11-19 17:44, Ferruh Yigit: > examples/tep_termination/main.c | 2 +- > examples/vhost/main.c | 2 +- > examples/vhost_xen/main.c | 2 +- > lib/librte_eal/common/eal_thread.h | 6 ++++++ It cannot compile because eal_thread.h is not part of the public API so not included in the examples. Please could you move it in lib/librte_eal/common/include? An idea of the filename it should be?