summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAshutosh Dixit <ashutosh.dixit@intel.com>2022-07-01 20:05:35 -0700
committerAshutosh Dixit <ashutosh.dixit@intel.com>2022-07-06 14:11:50 -0700
commit35edd17a9c1dcd71b92182bce9378eea321b0f37 (patch)
treed27c6633790840ac49cebaa330dff5e5f496c2fc
parent1bd1a033e71790bcc60acccac32d4195cae40b6e (diff)
tests/drm_read: Fix -Wdeprecated-declarations
[1/405] Compiling C object tests/drm_read.p/drm_read.c.o ../tests/drm_read.c: In function ‘test_short_buffer_wakeup’: ../tests/drm_read.c:224:17: warning: ‘pthread_yield’ is deprecated: \ pthread_yield is deprecated, \ use sched_yield instead [-Wdeprecated-declarations] 224 | pthread_yield(); | ^~~~~~~~~~~~~ /usr/include/pthread.h:479:12: note: declared here 479 | extern int __REDIRECT_NTH (pthread_yield, (void), sched_yield) | ^~~~~~~~~~~~~~ Use sched_yield instead of pthread_yield Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com> Signed-off-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
-rw-r--r--tests/drm_read.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/drm_read.c b/tests/drm_read.c
index 3186e609..4a966a23 100644
--- a/tests/drm_read.c
+++ b/tests/drm_read.c
@@ -221,7 +221,7 @@ static void test_short_buffer_wakeup(int in, enum pipe pipe)
pthread_mutex_unlock(&w.mutex);
/* Give each thread a chance to sleep in drm_read() */
- pthread_yield();
+ sched_yield();
/* One event should wake all threads as none consume */
generate_event(w.fd, pipe);