From patchwork Mon Dec 5 20:24:28 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 120459 X-Patchwork-Delegate: thomas@monjalon.net Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 0A016A0547; Mon, 5 Dec 2022 21:24:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 2D39D41144; Mon, 5 Dec 2022 21:24:34 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 08C3A40156 for ; Mon, 5 Dec 2022 21:24:31 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id 460C420B83E5; Mon, 5 Dec 2022 12:24:31 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 460C420B83E5 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1670271871; bh=pkncLiirfUvEMuSTzc9waJc9ivU//5PJVhe5jjO8aw0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=MhUR/iO+PSN1Lt5hVHuxZTAoN+UcfJAFRX78aspsBR/PXzKpXMQQmIVd1rPMhwAj9 ioZC96DuRngwvtbkyvYiXuadLZ+IbP+0Mr7Q71GVxSOESRSSZh9QsxekNOGXi1wtD5 MpMQZdRXvf9wn4eb4rl+rfc9AZwRSAJBdN80tO8I= From: Tyler Retzlaff To: dev@dpdk.org, thomas@monjalon.net, david.marchand@redhat.com, stephen@networkplumber.org, olivier.matz@6wind.com Cc: Tyler Retzlaff Subject: [PATCH 3/3] eal: deprecate pthread control thread create API Date: Mon, 5 Dec 2022 12:24:28 -0800 Message-Id: <1670271868-11364-4-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> References: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> 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 Signed-off-by: Tyler Retzlaff --- doc/guides/rel_notes/deprecation.rst | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index b9b02dc..cb74e08 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -119,3 +119,7 @@ Deprecation Notices Its removal has been postponed to let potential users report interest in maintaining it. In the absence of such interest, this library will be removed in DPDK 23.11. + +* eal: The function ``rte_ctrl_thread_create`` will be removed and + replaced by the new ``rte_control_thread_create``api, continuing the + effort to decouple eal from platform-specific thread implementations.