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 DC4BD4253E; Fri, 8 Sep 2023 06:04:42 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id BB60C40285; Fri, 8 Sep 2023 06:04:42 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9692340042 for ; Fri, 8 Sep 2023 06:04:40 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id EA546212B5D1; Thu, 7 Sep 2023 21:04:39 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EA546212B5D1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1694145879; bh=eRDOnzUQBg56UZ8A9VDEyIh4IqED4W8LIdpeQLv76d4=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=fRDm1JQc5L/3TGNwpo1KwC+edHuRzBAgVwkBERNCd6Fj3Jpjuto4r9RTaQ65WEO9/ MG9fHvnxX4QjiGWNFGOGf4EcXxDUO9fb7XHhFqKcWJU8P4pVl3bBQIWdJ9Vq8aanzZ NDPTuMSau35e30KI2st3aj8Tc4Ab8oHb4oVkCAvk= Date: Thu, 7 Sep 2023 21:04:39 -0700 From: Tyler Retzlaff To: Thomas Monjalon Cc: dev@dpdk.org, David Marchand , Ferruh Yigit Subject: Re: [PATCH 04/11] eal: promote thread API as stable Message-ID: <20230908040439.GC7692@linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net> References: <20230906162226.1618088-1-thomas@monjalon.net> <20230906162226.1618088-5-thomas@monjalon.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230906162226.1618088-5-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:21PM +0200, Thomas Monjalon wrote: > The rte_thread API must be used to ease OS porting. > One step of this process is to mark the necessary API as stable. > > Signed-off-by: Thomas Monjalon > --- Acked-by: Tyler Retzlaff