diff options
author | Tom de Vries <tdevries@suse.de> | 2022-12-31 07:31:17 +0100 |
---|---|---|
committer | Tom de Vries <tdevries@suse.de> | 2022-12-31 07:31:17 +0100 |
commit | 32c960fac8d4d52d3afca088b3419e3e658d322e (patch) | |
tree | bfbee9bd5b4b7cd0a18c1a5b0e1d685aaa168092 /gdb | |
parent | e64ddcc663b79cf2ceb51be8dc175982049715b2 (diff) | |
download | gdb-32c960fac8d4d52d3afca088b3419e3e658d322e.zip gdb-32c960fac8d4d52d3afca088b3419e3e658d322e.tar.gz gdb-32c960fac8d4d52d3afca088b3419e3e658d322e.tar.bz2 |
[gdb/testsuite] Replace deprecated pthread_yield in gdb.threads/watchpoint-fork.exp
On Ubuntu 22.04.1 x86_64, with glibc 2.35 I run into:
...
watchpoint-fork-mt.c: In function 'start':^M
watchpoint-fork-mt.c:67:7: warning: 'pthread_yield' is deprecated: \
pthread_yield is deprecated, use sched_yield instead \
[-Wdeprecated-declarations]^M
67 | i = pthread_yield ();^M
| ^^M
...
Fix this as suggested, by using sched_yield instead.
Tested on x86_64-linux.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/gdb.threads/watchpoint-fork-mt.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/gdb/testsuite/gdb.threads/watchpoint-fork-mt.c b/gdb/testsuite/gdb.threads/watchpoint-fork-mt.c index a99e288..3cd3a5e 100644 --- a/gdb/testsuite/gdb.threads/watchpoint-fork-mt.c +++ b/gdb/testsuite/gdb.threads/watchpoint-fork-mt.c @@ -64,7 +64,7 @@ start (void *arg) while (step != 1) { - i = pthread_yield (); + i = sched_yield (); assert (i == 0); } @@ -76,7 +76,7 @@ start (void *arg) if (step == 99) goto step_99; - i = pthread_yield (); + i = sched_yield (); assert (i == 0); } @@ -92,7 +92,7 @@ step_3: if (step == 99) goto step_99; - i = pthread_yield (); + i = sched_yield (); assert (i == 0); } @@ -132,7 +132,7 @@ main (void) step = 1; while (step != 2) { - i = pthread_yield (); + i = sched_yield (); assert (i == 0); } @@ -149,7 +149,7 @@ main (void) #endif while (step != 4) { - i = pthread_yield (); + i = sched_yield (); assert (i == 0); } |