about summary refs log tree commit diff
path: root/support/support_process_state.c
diff options
context:
space:
mode:
authorSamuel Thibault <samuel.thibault@ens-lyon.org>2020-12-28 23:05:14 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2020-12-28 23:17:56 +0100
commitf9c3cf286479da5d8a6ea2288f9f2c731896cd6f (patch)
treeae9b5342b0aaa7fabec2052a1c6dc80e703c3801 /support/support_process_state.c
parente42efa01c9305eb27616bae2bc314d8e44d129e0 (diff)
downloadglibc-f9c3cf286479da5d8a6ea2288f9f2c731896cd6f.tar.gz
glibc-f9c3cf286479da5d8a6ea2288f9f2c731896cd6f.tar.xz
glibc-f9c3cf286479da5d8a6ea2288f9f2c731896cd6f.zip
support: Make support_process_state_wait wait less
Tests such as posix/tst-waitid.c make heavy use of
support_process_state_wait, and thus on non-Linux where it falls back
to sleeping, a 2s sleep makes such test time out, while 1s remains
fine enough.
Diffstat (limited to 'support/support_process_state.c')
-rw-r--r--support/support_process_state.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/support/support_process_state.c b/support/support_process_state.c
index e303c78fc8..8b06d230a5 100644
--- a/support/support_process_state.c
+++ b/support/support_process_state.c
@@ -88,5 +88,5 @@ support_process_state_wait (pid_t pid, enum support_process_state state)
   xfclose (fstatus);
   /* Fallback to nanosleep if an invalid state is found.  */
 #endif
-  nanosleep (&(struct timespec) { 2, 0 }, NULL);
+  nanosleep (&(struct timespec) { 1, 0 }, NULL);
 }