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 AD90A41C44; Wed, 8 Feb 2023 22:26:39 +0100 (CET) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 891FB4014F; Wed, 8 Feb 2023 22:26:39 +0100 (CET) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 92FDB4067B for ; Wed, 8 Feb 2023 22:26:37 +0100 (CET) Received: by linux.microsoft.com (Postfix, from userid 1086) id EAABE20C8ADA; Wed, 8 Feb 2023 13:26:36 -0800 (PST) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com EAABE20C8ADA DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1675891596; bh=JGE2OsZkNDUrklkd6PgFajNsmar7Ftgr4IJ39m7IzJ4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=fnGCrhxOS5ZkNO7qEkfTnN8ASjdKe6uF1ukBQOkMZjhtv7INGAE/0DFttBRBLrvJF tx0b9zqR6E/aZLvReexe4/UFnkxeZUqTVfZLzyxJPHNpqHhH0ts/cEwgUbTQVnOfwu PqKDQkwI6L5S1nGizZD/GHMZw/p7xbWIKdjmeeYU= From: Tyler Retzlaff To: dev@dpdk.org Cc: david.marchand@redhat.com, thomas@monjalon.net, olivier.matz@6wind.com, stephen@networkplumber.org, mb@smartsharesystems.com, hofors@lysator.liu.se, Tyler Retzlaff Subject: [PATCH v6 3/3] doc: announce deprecation of thread ctrl create function Date: Wed, 8 Feb 2023 13:26:35 -0800 Message-Id: <1675891595-28366-4-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1675891595-28366-1-git-send-email-roretzla@linux.microsoft.com> References: <1670271868-11364-1-git-send-email-roretzla@linux.microsoft.com> <1675891595-28366-1-git-send-email-roretzla@linux.microsoft.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Notify deprecation of rte_ctrl_thread_create API, it will be removed as it exposes platform-specific thread details. Signed-off-by: Tyler Retzlaff Acked-by: Morten Brørup Acked-by: David Marchand Reviewed-by: Mattias Rönnblom --- doc/guides/rel_notes/deprecation.rst | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index ac9aa76..6eb9721 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -23,10 +23,10 @@ Deprecation Notices in the future. Applications can use ``devtools/cocci/func_or_ret.cocci`` to update their code. -* eal: The function ``rte_thread_setname`` is planned to be deprecated - starting with the 23.07 release, subject to the replacement API - rte_thread_set_name being marked as stable, and planned to be removed - by the 23.11 release. +* eal: The function ``rte_thread_setname`` and ``rte_ctrl_thread_create`` + are planned to be deprecated starting with the 23.07 release, subject to + the replacement API rte_thread_set_name and rte_thread_create_control being + marked as stable, and planned to be removed by the 23.11 release. * rte_atomicNN_xxx: These APIs do not take memory order parameter. This does not allow for writing optimized code for all the CPU architectures supported -- 1.8.3.1