From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm0-f49.google.com (mail-wm0-f49.google.com [74.125.82.49]) by dpdk.org (Postfix) with ESMTP id 60CF78E7E for ; Sat, 12 Dec 2015 21:53:32 +0100 (CET) Received: by mail-wm0-f49.google.com with SMTP id l68so14830427wml.0 for ; Sat, 12 Dec 2015 12:53:32 -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=QUKCaYnaTymf48SioTjnpFeWU2xaVuXOLHJuxPEl0uM=; b=RvCwQB+DopsFeFMT8+XjaALdeZGu6q7FfxfFEk6RuOITqBE+r1T7DEfuykmJkCL5Zs /4bndSQoj8VhyMpMCnr0ho7Pg1k85oUTIoqEVx19yKAICP3Ezyd9vFack7pE4pLhYlpj 26nV5uSvJ6biI4gIAF+v6W68lg9hp+dd2zlY6FGy4B9oZECmoTNLp46J0OOa9Oaw0JQt tSfEtyp9kJnu0Ce1kNhJbRdvN5JGVRLcnx6YcCGcuLOGaXsq8g5fXrbVtfW71/Vn1yvA Cmxk5z4JpaLM7W3pGx6BElHTpFFNFxRMoqHx1PAtlfO7W6CNqEWocQhIWB933EZktiz4 A0Rw== 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=QUKCaYnaTymf48SioTjnpFeWU2xaVuXOLHJuxPEl0uM=; b=enCPC4WiwFfpowK6bNKeInsUrfE//p4gIyFDLQ725Q53QkBP/Uq56QsS1n5F0TWzPF qLOVhhyT/JjUGM6LmouhR963EVNgnSuX1Di7eDWLLLdLDYU+7ENdjrOlfJf0CuOc53QE YCYbeBq+/5clJrQ3CA2ysrFAFf4T4glcQAzocScMWrFeV7zyGjAdxpiZwKza2N6iHIWn dAODf5i/CLBwjvAk9vjs+1tPmWFj43ZzueiRl1UQXw99V9UHajEFk6pohcK/tljmEMdK 1Nkx7nWtdExXB8gcrNMQwWtLAK/3ZvjOOPNUuXli9f0/azLQbnO9iFZkIhBqesl/s35t 2d/A== X-Gm-Message-State: ALoCoQnsX6RgfNnX3WDdLmJetniaoC3IPOaPgcNahKQx0kjuz8/EScu8RcP+a/QDEnEdyLDmNj7t4NyxHGL+Z0rlQYbxvKFiiQ== X-Received: by 10.194.111.232 with SMTP id il8mr11568596wjb.150.1449953612202; Sat, 12 Dec 2015 12:53:32 -0800 (PST) Received: from xps13.localnet (136-92-190-109.dsl.ovh.fr. [109.190.92.136]) by smtp.gmail.com with ESMTPSA id u134sm9063359wmd.0.2015.12.12.12.53.30 (version=TLSv1/SSLv3 cipher=OTHER); Sat, 12 Dec 2015 12:53:31 -0800 (PST) From: Thomas Monjalon To: Ian Betts Date: Sat, 12 Dec 2015 21:52:15 +0100 Message-ID: <3128530.uWxnhVopmG@xps13> Organization: 6WIND User-Agent: KMail/4.14.10 (Linux/4.1.6-1-ARCH; KDE/4.14.11; x86_64; ; ) In-Reply-To: <1449907928-28374-1-git-send-email-ian.betts@intel.com> References: <1449907928-28374-1-git-send-email-ian.betts@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] examples/performance-thread: fix - cleanup before exit 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: Sat, 12 Dec 2015 20:53:32 -0000 2015-12-12 08:12, Ian Betts: > Fixes: 433ba6228f9a77a9b5f4 ("add pthread_shim app") > > The patch fixes an inverted return value in the > cond_destroy and cond_init APIs of the pthread shim > example. > > These APIs are now demonstrated in the sample app by > having the mutexes and condition variables > explicitly destroyed before the appplication terminates. > > Signed-off-by: Ian Betts Applied, thanks