]> sourceware.org Git - glibc.git/commitdiff
hurd: set interrupt timeout to 1 minute
authorSamuel Thibault <samuel.thibault@ens-lyon.org>
Tue, 9 Oct 2018 20:27:59 +0000 (22:27 +0200)
committerSamuel Thibault <samuel.thibault@ens-lyon.org>
Sun, 28 Oct 2018 09:23:22 +0000 (10:23 +0100)
Seeing a server not able to get interrupted for 3s is not so surprising when
e.g. a lot of writes are happening. 1 minute allows to actually notice the
issue and be able to debug it.

* hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): Set to 60000.

ChangeLog
hurd/hurdsig.c

index 736d85f2214fc266af90d326d4113d3d3c152929..79255d3795025e0e7d6d353237c1ee4fe27fdfb9 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2018-10-28  Samuel Thibault  <samuel.thibault@ens-lyon.org>
+
+       * hurd/hurdsig.c (_hurd_interrupted_rpc_timeout): Set to 60000.
+
 2018-10-26  Joseph Myers  <joseph@codesourcery.com>
 
        * scripts/build-many-glibcs.py: Remove compatibility for missing
index aa82f63413539620d45388cdd6934506114057a4..48179b419770f5dbb8035c3bbec1e8cdd668e9bc 100644 (file)
@@ -57,7 +57,7 @@ unsigned long int __hurd_sigthread_stack_end;
 struct hurd_sigstate *_hurd_sigstates;
 
 /* Timeout for RPC's after interrupt_operation. */
-mach_msg_timeout_t _hurd_interrupted_rpc_timeout = 3000;
+mach_msg_timeout_t _hurd_interrupted_rpc_timeout = 60000;
 \f
 static void
 default_sigaction (struct sigaction actions[NSIG])
This page took 0.065788 seconds and 5 git commands to generate.