public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [hurd,commited] support: Make support_process_state_wait wait less
@ 2020-12-29  0:07 Samuel Thibault
  0 siblings, 0 replies; only message in thread
From: Samuel Thibault @ 2020-12-29  0:07 UTC (permalink / raw)
  To: libc-alpha; +Cc: Samuel Thibault, commit-hurd

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.
---
 support/support_process_state.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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);
 }
-- 
2.29.2


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2020-12-29  0:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-29  0:07 [hurd,commited] support: Make support_process_state_wait wait less Samuel Thibault

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).