From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id BEDF74253E; Fri, 8 Sep 2023 06:13:01 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 5DD5940285; Fri, 8 Sep 2023 06:13:01 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9C49740042 for ; Fri, 8 Sep 2023 06:13:00 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 01012212B5D1; Thu, 7 Sep 2023 21:12:59 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 01012212B5D1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1694146380; bh=7zzwq5Y/fgyrWaO9/zYe5HT+N+UckvsbgjOZeEjG2+0=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=ETILtjJDi9A9T3kylyi3FsM21vHsy/vFf/+tlseCeDIGmqGkXXo6si7wIbKvNvFd/ m+KCvu5fZVgg1Xo63dMHlU2YgGoMSBHmcoaU6hbEaA/wdWKI82kOvhL/XGMR8N+dMg Olioaxp1DgPdLyLodOiIg2iKqFgFjPEoz6songQA= Date: Thu, 7 Sep 2023 21:12:59 -0700 From: Tyler Retzlaff To: Thomas Monjalon Cc: dev@dpdk.org, David Marchand , Ferruh Yigit , Reshma Pattan , Stephen Hemminger Subject: Re: [PATCH 09/11] test: convert threads creation Message-ID: <20230908041259.GE7692@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230906162226.1618088-1-thomas@monjalon.net> <20230906162226.1618088-10-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230906162226.1618088-10-thomas@monjalon.net> User-Agent: Mutt/1.5.21 (2010-09-15) X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org On Wed, Sep 06, 2023 at 06:12:26PM +0200, Thomas Monjalon wrote: > Calls to pthread for thread creation are replaced with the rte_thread API. > > Signed-off-by: Thomas Monjalon > --- Acked-by: Tyler Retzlaff