From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3721E1075 for ; Tue, 21 Mar 2017 21:25:34 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=intel.com; i=@intel.com; q=dns/txt; s=intel; t=1490127934; x=1521663934; h=from:to:cc:subject:date:message-id:references: in-reply-to:content-id:content-transfer-encoding: mime-version; bh=djzYG51TyW4bslEUN7wdbR+bOIrYD6WSoRxDcMB2AT0=; b=UYCs++qaC0yCxcK/MjcRbkfIx3crXqIJ0pUA7sH5G8B3/iwmRKm5kCqj 67CflwPDeE37mV7PD+mE9FBHdbeNBQ==; Received: from fmsmga003.fm.intel.com ([10.253.24.29]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Mar 2017 13:25:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,201,1486454400"; d="scan'208";a="837154202" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by FMSMGA003.fm.intel.com with ESMTP; 21 Mar 2017 13:25:33 -0700 Received: from fmsmsx113.amr.corp.intel.com ([169.254.13.175]) by fmsmsx104.amr.corp.intel.com ([169.254.3.122]) with mapi id 14.03.0319.002; Tue, 21 Mar 2017 13:25:34 -0700 From: "Wiles, Keith" To: Hiroki SHIROKURA CC: "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] example/performance-thread: lthread support C++ Thread-Index: AQHSomVN0UgW3s9W+EWsQZygnRrOKKGgMyCA Date: Tue, 21 Mar 2017 20:25:33 +0000 Message-ID: <01925B29-BACB-4557-AA7E-E385A8F0B7B6@intel.com> References: <1490115807-29232-1-git-send-email-slank.dev@gmail.com> In-Reply-To: <1490115807-29232-1-git-send-email-slank.dev@gmail.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.255.84.105] Content-Type: text/plain; charset="us-ascii" Content-ID: <3120F5318A09924FA022F3024FD8DFC6@intel.com> Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] example/performance-thread: lthread support C++ 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: Tue, 21 Mar 2017 20:25:35 -0000 > On Mar 21, 2017, at 12:03 PM, Hiroki SHIROKURA wrot= e: >=20 > Lthread is awesome but it doesn't support C++. > So I write patch to support lthread to support C++. > Added "extern C {}" to lthread-headers >=20 > Signed-off-by: Hiroki SHIROKURA Acked-by: Keith Wiles > --- > examples/performance-thread/common/arch/x86/ctx.h | 8 ++++++++ > examples/performance-thread/common/lthread.h | 8 ++++++++ > examples/performance-thread/common/lthread_api.h | 8 ++++++++ > examples/performance-thread/common/lthread_cond.h | 8 ++++++++ > examples/performance-thread/common/lthread_diag.h | 9 +++++++++ > examples/performance-thread/common/lthread_diag_api.h | 8 ++++++++ > examples/performance-thread/common/lthread_int.h | 8 ++++++++ > examples/performance-thread/common/lthread_mutex.h | 8 ++++++++ > examples/performance-thread/common/lthread_objcache.h | 7 +++++++ > examples/performance-thread/common/lthread_pool.h | 7 +++++++ > examples/performance-thread/common/lthread_queue.h | 7 +++++++ > examples/performance-thread/common/lthread_sched.h | 7 +++++++ > examples/performance-thread/common/lthread_timer.h | 7 +++++++ > examples/performance-thread/common/lthread_tls.h | 7 +++++++ > 14 files changed, 107 insertions(+) >=20 Regards, Keith