> -----Original Message----- > From: jer...@marvell.com <jer...@marvell.com> > Sent: Monday, August 16, 2021 4:19 PM > To: John McNamara <john.mcnam...@intel.com>; Ian Betts > <ian.be...@intel.com>; Tomasz Kulasek <tomaszx.kula...@intel.com> > Cc: dev@dpdk.org; NBU-Contact-Thomas Monjalon > <tho...@monjalon.net>; bruce.richard...@intel.com; > david.march...@redhat.com; Jerin Jacob <jer...@marvell.com>; Ali > Alnubani <alia...@nvidia.com> > Subject: [PATCH] examples/performance-thread: fix build issue with clang > 12.0.1 > > From: Jerin Jacob <jer...@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: alia...@oss.nvidia.com > > Signed-off-by: Jerin Jacob <jer...@marvell.com> > ---
I think this issue might be specific to Fedora Rawhide's build of clang 12.0.1, see my comment in the ticket: https://bugs.dpdk.org/show_bug.cgi?id=745#c3 Tested-by: Ali Alnubani <alia...@nvidia.com> Thanks Jerin. Ali