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 9C00BA0544; Wed, 15 Jun 2022 01:47:54 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C292742B7B; Wed, 15 Jun 2022 01:47:27 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 9EC6841145 for ; Wed, 15 Jun 2022 01:47:22 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 0C40B20C322E; Tue, 14 Jun 2022 16:47:19 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 0C40B20C322E DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1655250440; bh=4i9qpSIB4k8ETM40kLN6e0te9gnZ3SMyEQknqC3hwT0=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Wb8fVBS2lnqOn8jI8C2ZV7GMTR9QrLzwTvBap5P0iCYJelFJOkNxiqqYuxK2pg++5 q2oG/txifeMd2u+X3Oi/ldIG+vfrTllzHdbIrBL8CDOk9DUFP/BlNQZ2LDtgFQxeZI iJVJFCknuGtCFu+FATzisVRXv+CsMyYNV/YiqsgE= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, dmitry.kozliuk@gmail.com, anatoly.burakov@intel.com, Tyler Retzlaff Subject: [PATCH v2 6/6] test/threads: remove unit test use of pthread Date: Tue, 14 Jun 2022 16:47:18 -0700 Message-Id: <1655250438-18044-7-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1655250438-18044-1-git-send-email-roretzla@linux.microsoft.com> References: <1654783134-13303-1-git-send-email-roretzla@linux.microsoft.com> <1655250438-18044-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 92a149a..034f82d 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