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 61A5DA0542; Wed, 5 Oct 2022 19:08:12 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8982442B6C; Wed, 5 Oct 2022 19:07:46 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 3F85440694 for ; Wed, 5 Oct 2022 19:07:41 +0200 (CEST) Received: from linuxonhyperv3.guj3yctzbm1etfxqx2vob5hsef.xx.internal.cloudapp.net (linux.microsoft.com [13.77.154.182]) by linux.microsoft.com (Postfix) with ESMTPSA id 13E8120E99AF; Wed, 5 Oct 2022 10:07:40 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 13E8120E99AF DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1664989660; bh=3jj3ClVgMx+adPVSECvXs1aeF0EOea1veEk4TafkCgI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=ihSX2EvRSC9/ZimG8FwzdRTs6HeGxehWDNCWn/e7a/ezOQ9EFImOPp97iIaRto5Xk 4rfHQYFZzRrVgAREeY6gAgNiBJ9/hvWLG0qLkez+PhLYsjn80xEjsc61Axq96/NqhO J6V15CMHGq+Y9NFG0FHMi3yzUKrpIRUfdbQwJNLo= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, dmitry.kozliuk@gmail.com, anatoly.burakov@intel.com, david.marchand@redhat.com Subject: [PATCH v5 6/6] test/threads: remove unit test use of pthread Date: Wed, 5 Oct 2022 10:07:31 -0700 Message-Id: <1664989651-29303-7-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1664989651-29303-1-git-send-email-roretzla@linux.microsoft.com> References: <1654783134-13303-1-git-send-email-roretzla@linux.microsoft.com> <1664989651-29303-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 Now that rte_thread provides thread lifetime functions stop using pthread in unit tests. Signed-off-by: Tyler Retzlaff --- app/test/test_threads.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app/test/test_threads.c b/app/test/test_threads.c index 3c22cec..e0f18e4 100644 --- a/app/test/test_threads.c +++ b/app/test/test_threads.c @@ -3,7 +3,6 @@ */ #include -#include #include #include @@ -79,12 +78,11 @@ static int test_thread_priority(void) { - pthread_t id; rte_thread_t thread_id; enum rte_thread_priority priority; thread_id_ready = 0; - RTE_TEST_ASSERT(pthread_create(&id, NULL, thread_main, &thread_id) == 0, + RTE_TEST_ASSERT(rte_thread_create(&thread_id, NULL, thread_main, NULL) == 0, "Failed to create thread"); while (__atomic_load_n(&thread_id_ready, __ATOMIC_ACQUIRE) == 0) @@ -131,13 +129,12 @@ static int test_thread_affinity(void) { - pthread_t id; rte_thread_t thread_id; rte_cpuset_t cpuset0; rte_cpuset_t cpuset1; thread_id_ready = 0; - RTE_TEST_ASSERT(pthread_create(&id, NULL, thread_main, &thread_id) == 0, + RTE_TEST_ASSERT(rte_thread_create(&thread_id, NULL, thread_main, NULL) == 0, "Failed to create thread"); while (__atomic_load_n(&thread_id_ready, __ATOMIC_ACQUIRE) == 0) -- 1.8.3.1