about summary refs log tree commit diff
path: root/sysdeps/pthread
diff options
context:
space:
mode:
authorAdhemerval Zanella <adhemerval.zanella@linaro.org>2023-04-03 14:18:14 -0300
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>2023-04-03 17:41:59 -0300
commit370da8a121c3ba9eeb2f13da15fc0f21f4136b25 (patch)
tree87b1213fe3fb8118d0d5c146756f2d53e0b47609 /sysdeps/pthread
parent16439f419b270184ec501c531bf20d83b6745fb0 (diff)
downloadglibc-370da8a121c3ba9eeb2f13da15fc0f21f4136b25.tar.gz
glibc-370da8a121c3ba9eeb2f13da15fc0f21f4136b25.tar.xz
glibc-370da8a121c3ba9eeb2f13da15fc0f21f4136b25.zip
nptl: Fix tst-cancel30 on sparc64
As indicated by sparc kernel-features.h, even though sparc64 defines
__NR_pause,  it is not supported (ENOSYS).  Always use ppoll or the
64 bit time_t variant instead.
Diffstat (limited to 'sysdeps/pthread')
-rw-r--r--sysdeps/pthread/tst-cancel30.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/pthread/tst-cancel30.c b/sysdeps/pthread/tst-cancel30.c
index 6eb4eb5b42..ff803386be 100644
--- a/sysdeps/pthread/tst-cancel30.c
+++ b/sysdeps/pthread/tst-cancel30.c
@@ -46,9 +46,7 @@ tf (void *arg)
 
   /* Wait indefinitely for cancellation, which only works if asynchronous
      cancellation is enabled.  */
-#ifdef SYS_pause
-  syscall (SYS_pause);
-#elif defined SYS_ppoll || defined SYS_ppoll_time64
+#if defined SYS_ppoll || defined SYS_ppoll_time64
 # ifndef SYS_ppoll_time64
 #  define SYS_ppoll_time64 SYS_ppoll
 # endif