From mboxrd@z Thu Jan 1 00:00:00 1970 From: Thomas Monjalon Subject: Re: [PATCH v2] example: add new service cores sample application Date: Tue, 24 Oct 2017 23:02:49 +0200 Message-ID: <2348616.cKq2TZEt1E@xps> References: <1506345834-137009-1-git-send-email-harry.van.haaren@intel.com> <1508409071-17740-1-git-send-email-harry.van.haaren@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7Bit Cc: dev@dpdk.org, john.mcnamara@intel.com, gage.eads@intel.com To: Harry van Haaren Return-path: Received: from out4-smtp.messagingengine.com (out4-smtp.messagingengine.com [66.111.4.28]) by dpdk.org (Postfix) with ESMTP id 4D2161B63E for ; Tue, 24 Oct 2017 23:02:51 +0200 (CEST) In-Reply-To: <1508409071-17740-1-git-send-email-harry.van.haaren@intel.com> List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 19/10/2017 12:31, Harry van Haaren: > This commit adds a new sample app, which showcases the value > of running services. In particular it allows the application > to dynamically schedule services to service-cores. > > The sample app itself registers a number of dummy services, > and applies different profiles to them at runtime. Note that > this sample application does not forward any traffic - it > demonstrates advanced usage of the service cores API. > > Signed-off-by: Harry van Haaren Compilation error with clang: examples/service_cores/main.c:187:1: error: control reaches end of non-void function Fixed by declaring function return as void. Applied, thanks