From patchwork Wed Jun 22 20:26:19 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tyler Retzlaff X-Patchwork-Id: 113270 X-Patchwork-Delegate: david.marchand@redhat.com 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 985D6A034C; Wed, 22 Jun 2022 22:26:37 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id C597D4280C; Wed, 22 Jun 2022 22:26:27 +0200 (CEST) Received: from linux.microsoft.com (linux.microsoft.com [13.77.154.182]) by mails.dpdk.org (Postfix) with ESMTP id 434DD40DDB for ; Wed, 22 Jun 2022 22:26:24 +0200 (CEST) Received: by linux.microsoft.com (Postfix, from userid 1086) id 8E77920C63B8; Wed, 22 Jun 2022 13:26:23 -0700 (PDT) DKIM-Filter: OpenDKIM Filter v2.11.0 linux.microsoft.com 8E77920C63B8 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linux.microsoft.com; s=default; t=1655929583; bh=PZpfXfqBrNpCcrV1uvUHJEFZcfcJRmUS3feN+g5euCo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=BmTm867e1tYWXxodMj7rInC8XwHMFjIEyWT4M1n5tvzNt2Uz3kZdrjKUaD8J+ngw9 C/0tY4mNQeDTMw/FChgs8Q3a5L6F8xJcUKSNmGikmyS56bbtxatFcNgJNJqJTSqBVu ELJxU7XL12ZgdgpXaB6ovJbto/PX1S/BHMTZoI3E= From: Tyler Retzlaff To: dev@dpdk.org Cc: thomas@monjalon.net, dmitry.kozliuk@gmail.com, anatoly.burakov@intel.com, Tyler Retzlaff , Narcisa Vasile Subject: [PATCH v3 4/6] test/threads: add tests for thread lifetime API Date: Wed, 22 Jun 2022 13:26:19 -0700 Message-Id: <1655929581-12366-5-git-send-email-roretzla@linux.microsoft.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1655929581-12366-1-git-send-email-roretzla@linux.microsoft.com> References: <1654783134-13303-1-git-send-email-roretzla@linux.microsoft.com> <1655929581-12366-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 test basic functionality and demonstrate use of following thread lifetime api. * rte_thread_create * rte_thread_detach * rte_thread_join Signed-off-by: Narcisa Vasile Signed-off-by: Tyler Retzlaff --- app/test/test_threads.c | 54 +++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 52 insertions(+), 2 deletions(-) diff --git a/app/test/test_threads.c b/app/test/test_threads.c index b9d8b4e..1077373 100644 --- a/app/test/test_threads.c +++ b/app/test/test_threads.c @@ -14,7 +14,7 @@ static uint32_t thread_id_ready; -static void * +static uint32_t thread_main(void *arg) { *(rte_thread_t *)arg = rte_thread_self(); @@ -23,7 +23,55 @@ while (__atomic_load_n(&thread_id_ready, __ATOMIC_ACQUIRE) == 1) ; - return NULL; + return 0; +} + +static int +test_thread_create_join(void) +{ + rte_thread_t thread_id; + rte_thread_t thread_main_id; + + thread_id_ready = 0; + RTE_TEST_ASSERT(rte_thread_create(&thread_id, NULL, thread_main, &thread_main_id) == 0, + "Failed to create thread."); + + while (__atomic_load_n(&thread_id_ready, __ATOMIC_ACQUIRE) == 0) + ; + + RTE_TEST_ASSERT(rte_thread_equal(thread_id, thread_main_id) != 0, + "Unexpected thread id."); + + __atomic_store_n(&thread_id_ready, 2, __ATOMIC_RELEASE); + + RTE_TEST_ASSERT(rte_thread_join(thread_id, NULL) == 0, + "Failed to join thread."); + + return 0; +} + +static int +test_thread_create_detach(void) +{ + rte_thread_t thread_id; + rte_thread_t thread_main_id; + + thread_id_ready = 0; + RTE_TEST_ASSERT(rte_thread_create(&thread_id, NULL, thread_main, + &thread_main_id) == 0, "Failed to create thread."); + + while (__atomic_load_n(&thread_id_ready, __ATOMIC_ACQUIRE) == 0) + ; + + RTE_TEST_ASSERT(rte_thread_equal(thread_id, thread_main_id) != 0, + "Unexpected thread id."); + + __atomic_store_n(&thread_id_ready, 2, __ATOMIC_RELEASE); + + RTE_TEST_ASSERT(rte_thread_detach(thread_id) == 0, + "Failed to detach thread."); + + return 0; } static int @@ -123,6 +171,8 @@ .setup = NULL, .teardown = NULL, .unit_test_cases = { + TEST_CASE(test_thread_create_join), + TEST_CASE(test_thread_create_detach), TEST_CASE(test_thread_affinity), TEST_CASE(test_thread_priority), TEST_CASES_END()