[dpdk-dev] [PATCH] examples/performance-thread: fix build issue with clang 12.0.1

jerinj at marvell.com jerinj at marvell.com
Mon Aug 16 15:19:14 CEST 2021


From: Jerin Jacob <jerinj at marvell.com>

In clang 12.0.1 version, the use of pthread_yield() deprecated,
use sched_yield() instead.

log:

Compiling C object
examples/dpdk-pthread_shim.p/performance-thread_pthread_shim_main.c.o
../examples/performance-thread/pthread_shim/main.c: In function
'helloworld_pthread':
../examples/performance-thread/pthread_shim/main.c:75:9: warning:
'pthread_yield' is deprecated: pthread_yield is deprecated, use
sched_yield instead [-Wdeprecated-declarations]

Fixes: 433ba6228f9a ("examples/performance-thread: add pthread_shim app")

Bugzilla ID: 745

Cc: alialnu at oss.nvidia.com

Signed-off-by: Jerin Jacob <jerinj at marvell.com>
---
 examples/performance-thread/pthread_shim/main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/examples/performance-thread/pthread_shim/main.c b/examples/performance-thread/pthread_shim/main.c
index 257de50692..7ce6cfb0c8 100644
--- a/examples/performance-thread/pthread_shim/main.c
+++ b/examples/performance-thread/pthread_shim/main.c
@@ -72,7 +72,7 @@ void *helloworld_pthread(void *arg)
 	print_count++;
 
 	/* yield thread to give opportunity for lock contention */
-	pthread_yield();
+	sched_yield();
 
 	/* retrieve arg from TLS */
 	uint64_t thread_no = (uint64_t) pthread_getspecific(key);
-- 
2.32.0



More information about the dev mailing list